wip private

This commit is contained in:
simplonco
2023-01-13 01:07:39 +01:00
parent 27bbb6346f
commit 23d1810226
3 changed files with 20 additions and 20 deletions

View File

@@ -8,7 +8,7 @@ export class roomDto
@IsString()
@IsNotEmpty()
@IsIn(["public", "protected", "private", "direct", "user"])
@IsIn(["public", "private", "direct", "user"])
type: string;
@IsString()

View File

@@ -18,7 +18,7 @@ export class Chatroom
@Column()
@IsString()
@IsNotEmpty()
@IsIn(["public", "protected", "private", "direct", "user"])
@IsIn(["public", "private", "direct", "user"])
type: string;
@Column()