feat: add public chat frontend

This commit is contained in:
CREDO23 2026-01-26 17:08:26 +02:00
parent 9d7259aab9
commit 37adc54d6a
9 changed files with 415 additions and 1 deletions

View file

@ -75,4 +75,7 @@ export const cacheKeys = {
comments: {
byMessage: (messageId: number) => ["comments", "message", messageId] as const,
},
publicChat: {
byToken: (shareToken: string) => ["public-chat", shareToken] as const,
},
};