family update
This commit is contained in:
@@ -66,3 +66,20 @@ export class SetRoomNotificationsMutedDto {
|
||||
@IsBoolean()
|
||||
muted!: boolean;
|
||||
}
|
||||
|
||||
export class AddChatRoomMemberDto {
|
||||
@IsString()
|
||||
memberUserId!: string;
|
||||
}
|
||||
|
||||
export class EditChatMessageDto {
|
||||
@IsString()
|
||||
@MinLength(1)
|
||||
content!: string;
|
||||
}
|
||||
|
||||
export class MarkRoomReadDto {
|
||||
@IsOptional()
|
||||
@IsString()
|
||||
lastMessageId?: string;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user