chats
Deploy app frontend / app frontend (push) Has been cancelled
Deploy db-migrations / db-migrations (push) Successful in 38s

This commit is contained in:
2024-12-06 23:50:51 +02:00
parent cf87c0daa7
commit 51a7f8f354
7 changed files with 124 additions and 16 deletions
+1
View File
@@ -19,6 +19,7 @@ export const getLocalDb = <T extends BaseDocument>(dbName: DB_NAMES) => new Pouc
export const qrCodeDbRemote = getRemoteDb<QRCodeDocument>(DB_NAMES.QR)
export const qrCodeDbLocal = getLocalDb<QRCodeDocument>(DB_NAMES.QR)
export const messagesDbLocal = getLocalDb<MessageDocument>(DB_NAMES.MESSAGES)
export const chatsDbLocal = getLocalDb<ChatDocument>(DB_NAMES.CHATS)
export const chatsDbRemote = getRemoteDb<ChatDocument>(DB_NAMES.CHATS)
export const webPushSubscriptionsDbRemote = getRemoteDb<
WebPushSubscriptionDocument<PushSubscriptionJSON>