diff --git a/apps/backend/src/app/files/files.dto.ts b/apps/backend/src/app/files/files.dto.ts index 8a1c616..6a92333 100644 --- a/apps/backend/src/app/files/files.dto.ts +++ b/apps/backend/src/app/files/files.dto.ts @@ -1,19 +1,18 @@ -import { IsUUID, MaxLength, MinLength } from 'class-validator'; -import { DefaultValuePipe } from '@nestjs/common'; - +import { DefaultValuePipe } from "@nestjs/common"; +import { IsUUID, MaxLength, MinLength } from "class-validator"; export class CreateFilesDto { - @MaxLength(128) - @MinLength(4) - fileName: string; + @MaxLength(128) + @MinLength(4) + fileName: string; - @MaxLength(64) - @MinLength(2) - uploadedBy: string; + @MaxLength(64) + @MinLength(2) + uploadedBy: string; - isDocumentation?: boolean; - isRestricted?: boolean; + isDocumentation?: boolean; + isRestricted?: boolean; - @IsUUID() - groupId: string; -} \ No newline at end of file + @IsUUID() + groupId: string; +}