Add delete podcast api service

This commit is contained in:
thierryverse 2025-11-18 19:32:24 +02:00
parent bf94903459
commit 1a954bc184
7 changed files with 72 additions and 50 deletions

View file

@ -2,6 +2,8 @@ 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,
podcasts: (searchSpaceId: string) =>
["active-search-space", "podcasts", searchSpaceId] as const,
},
auth: {
user: ["auth", "user"] as const,