From 81c8389cdd6f51cc55c16a85b86121b6f4ce1f0b Mon Sep 17 00:00:00 2001 From: Ronnie Friman <L4168@student.jamk.fi> Date: Tue, 16 Jul 2019 19:52:58 +0300 Subject: [PATCH] add validation for group class --- src/faction/faction.dto.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/faction/faction.dto.ts b/src/faction/faction.dto.ts index 9064f56..fbc46d3 100644 --- a/src/faction/faction.dto.ts +++ b/src/faction/faction.dto.ts @@ -9,6 +9,7 @@ import { Max, IsOptional, IsHexColor, + IsIn, } from 'class-validator'; import { GameEntity } from '../game/game.entity'; @@ -57,6 +58,8 @@ export class GameGroupDTO { @IsString() @Length(3, 31) name: string; + @IsIn(['infantry', 'recon', 'mechanized']) + class: string; @IsUUID('4') faction: FactionEntity; } -- GitLab