SurfSense/surfsense_web/lib/query-client/cache-keys.ts

7 lines
243 B
TypeScript
Raw Normal View History

2025-11-11 04:02:04 +02:00
export const cacheKeys = {
2025-11-12 13:27:15 +02:00
activeSearchSpace: {
chats : (searchSpaceId: string) => ["active-search-space", "chats", searchSpaceId] as const,
activeChat : (chatId: string) => ["active-search-space", "active-chat", chatId] as const,
},
2025-11-11 04:02:04 +02:00
};