This commit is contained in:
Bastian Wagner
2024-10-25 12:32:26 +02:00
parent d4f1fbbf39
commit b4e264eda9
40 changed files with 538 additions and 66 deletions

View File

@@ -1,8 +0,0 @@
import { IsNotEmpty, MaxLength, MinLength } from 'class-validator';
export class CreateKeySystemDto {
@IsNotEmpty()
@MinLength(2)
@MaxLength(255)
name: string;
}

View File

@@ -1,4 +1,3 @@
export * from './login.dto';
export * from './auth-code.dto';
export * from './create-key-system.dto';
export * from './handover-key.dto';