Init Chat Folders UI

This commit is contained in:
Jamie Kyle
2025-09-29 15:34:24 -07:00
committed by GitHub
parent 726234a27b
commit ec7d07269d
88 changed files with 4082 additions and 1306 deletions

View File

@@ -239,6 +239,7 @@ import {
getCurrentChatFolders,
getChatFolder,
createChatFolder,
createAllChatsChatFolder,
updateChatFolder,
markChatFolderDeleted,
getOldestDeletedChatFolder,
@@ -700,6 +701,7 @@ export const DataWriter: ServerWritableInterface = {
createDonationReceipt,
createChatFolder,
createAllChatsChatFolder,
updateChatFolder,
markChatFolderDeleted,
deleteExpiredChatFolders,
@@ -7655,8 +7657,8 @@ function hydrateNotificationProfile(
allowAllMentions: Boolean(profile.allowAllMentions),
scheduleEnabled: Boolean(profile.scheduleEnabled),
allowedMembers: profile.allowedMembersJson
? new Set(JSON.parse(profile.allowedMembersJson))
: new Set(),
? new Set<string>(JSON.parse(profile.allowedMembersJson))
: new Set<string>(),
scheduleStartTime: profile.scheduleStartTime || undefined,
scheduleEndTime: profile.scheduleEndTime || undefined,
scheduleDaysEnabled: profile.scheduleDaysEnabledJson