feat: add user cache keys

This commit is contained in:
CREDO23 2025-12-15 12:04:39 +00:00
parent 8c5ecfd4e4
commit d5997a6d0c

View file

@ -41,4 +41,7 @@ export const cacheKeys = {
detail: (searchSpaceId: string) => ["search-spaces", searchSpaceId] as const,
communityPrompts: ["search-spaces", "community-prompts"] as const,
}
};
user: {
current: () => ["user", "me"] as const,
},
};