From 9617133d900d01dd2051595c4f014dc6090f299c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bar=C4=B1=C5=9F=20DEM=C4=B0RC=C4=B0?= Date: Fri, 3 May 2024 15:44:19 +0300 Subject: [PATCH] new legend Vivi (deploy) --- src/dto/getLegendByID.dto.ts | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/dto/getLegendByID.dto.ts b/src/dto/getLegendByID.dto.ts index b23be22..3d49c41 100644 --- a/src/dto/getLegendByID.dto.ts +++ b/src/dto/getLegendByID.dto.ts @@ -2,14 +2,11 @@ import { Transform } from "class-transformer"; import { IsDefined, IsNumber, Max, Min, NotEquals } from "class-validator"; export class GetLegendByIDDTO { - // @NotEquals(27) new legend loki uses legend id 27 - // @NotEquals(17) new legend red raptor uses legend id 17 - // @NotEquals(62) new legend thea uses legend id 62 @IsDefined() @Transform((i) => parseInt(i.value)) @IsNumber() @Min(3) - @Max(63) + @Max(64) @NotEquals(61) legend_id: number; }