feature: Organizations form UX flow now matches the needs.

This commit is contained in:
2026-05-06 18:55:42 +03:30
parent 6258477860
commit bb44270795
5 changed files with 700 additions and 218 deletions

View File

@@ -0,0 +1,6 @@
import { IsIn } from 'class-validator';
export class RespondLinkRequestDto {
@IsIn(['ACCEPT', 'REJECT'])
action: 'ACCEPT' | 'REJECT';
}