family update

This commit is contained in:
lendry
2026-06-24 23:17:24 +03:00
parent 9727cf3f35
commit f2366a69a0
18 changed files with 1374 additions and 103 deletions

View File

@@ -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;
}