F4: remove legacy survey review DTO
This commit is contained in:
@@ -1,16 +0,0 @@
|
|||||||
import { IsEnum, IsOptional, IsString, MaxLength } from 'class-validator';
|
|
||||||
|
|
||||||
export enum SurveyReviewDecision {
|
|
||||||
APPROVE = 'APPROVE',
|
|
||||||
REJECT = 'REJECT',
|
|
||||||
}
|
|
||||||
|
|
||||||
export class ReviewSurveyReportDto {
|
|
||||||
@IsEnum(SurveyReviewDecision)
|
|
||||||
decision!: SurveyReviewDecision;
|
|
||||||
|
|
||||||
@IsOptional()
|
|
||||||
@IsString()
|
|
||||||
@MaxLength(4000)
|
|
||||||
notes?: string | null;
|
|
||||||
}
|
|
||||||
Reference in New Issue
Block a user