feat: add search functionality to notifications and update related components

This commit is contained in:
Anish Sarkar 2026-02-06 16:45:54 +05:30
parent e01717c65d
commit 8c3b65bac2
6 changed files with 148 additions and 77 deletions

View file

@ -92,4 +92,8 @@ export const cacheKeys = {
bySearchSpace: (searchSpaceId: number) =>
["public-chat-snapshots", "search-space", searchSpaceId] as const,
},
notifications: {
search: (searchSpaceId: number | null, search: string, tab: string) =>
["notifications", "search", searchSpaceId, search, tab] as const,
},
};