latest work #20

Merged
philipp merged 233 commits from dev into main 2020-12-09 18:49:33 +00:00
2 changed files with 3 additions and 3 deletions
Showing only changes of commit 091b455460 - Show all commits

View File

@ -24,7 +24,7 @@ export class CreateUser {
@IsInt() @IsInt()
@IsOptional() @IsOptional()
groupId?: number[] | number groupId?: number[] | number
@IsUUID("5") @IsUUID("4")
uuid: string; uuid: string;
public async toUser(): Promise<User> { public async toUser(): Promise<User> {

View File

@ -18,9 +18,9 @@ export class User {
id: number; id: number;
/** /**
* autogenerated uuid * uuid
*/ */
@IsUUID("5") @IsUUID("4")
uuid: string; uuid: string;
/** /**