mirror of
https://github.com/MODSetter/SurfSense.git
synced 2026-04-25 16:56:22 +02:00
9 lines
289 B
TypeScript
9 lines
289 B
TypeScript
export const cacheKeys = {
|
|
activeSearchSpace: {
|
|
chats: (searchSpaceId: string) => ["active-search-space", "chats", searchSpaceId] as const,
|
|
activeChat: (chatId: string) => ["active-search-space", "active-chat", chatId] as const,
|
|
},
|
|
auth: {
|
|
user: ["auth", "user"] as const,
|
|
},
|
|
};
|