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

@@ -9,6 +9,7 @@ COPY apps/sso-core/package.json ./apps/sso-core/
COPY apps/api-gateway/package.json ./apps/api-gateway/
COPY apps/frontend/package.json ./apps/frontend/
COPY apps/docs/package.json ./apps/docs/
COPY tauri_app/package.json ./tauri_app/
RUN --mount=type=cache,target=/root/.npm \
npm config set registry "${NPM_REGISTRY}" && \

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 {