diff --git a/backend/src/config/dto/updateConfig.dto.ts b/backend/src/config/dto/updateConfig.dto.ts index 3460bd26..4be8c663 100644 --- a/backend/src/config/dto/updateConfig.dto.ts +++ b/backend/src/config/dto/updateConfig.dto.ts @@ -1,7 +1,8 @@ -import { IsNotEmpty } from "class-validator"; +import { IsNotEmpty, ValidateIf } from "class-validator"; class UpdateConfigDTO { @IsNotEmpty() + @ValidateIf((dto) => dto.value !== "") value: string | number | boolean; }