(channelId: string)
| 10 | import { KIND_FORUM_COMMENT, KIND_FORUM_POST } from "@/shared/constants/kinds"; |
| 11 | |
| 12 | export function forumPostsQueryKey(channelId: string) { |
| 13 | return ["forum-posts", channelId] as const; |
| 14 | } |
| 15 | |
| 16 | export function forumThreadQueryKey(channelId: string, eventId: string) { |
| 17 | return ["forum-thread", channelId, eventId] as const; |
no outgoing calls
no test coverage detected