global fix and add tauri app

This commit is contained in:
lendry
2026-06-26 13:56:54 +03:00
parent aa228d84eb
commit 3b05b7e4d4
50 changed files with 3947 additions and 80 deletions

View File

@@ -84,7 +84,8 @@ export class ChatController {
userId,
roomId,
name: dto.name,
notificationsMuted: dto.notificationsMuted
notificationsMuted: dto.notificationsMuted,
pinned: dto.pinned
})
);
}

View File

@@ -25,6 +25,10 @@ export class UpdateChatRoomDto {
@IsOptional()
@IsBoolean()
notificationsMuted?: boolean;
@IsOptional()
@IsBoolean()
pinned?: boolean;
}
export class SendChatMessageDto {