Files
supabase/apps/studio/data/custom-domains/keys.ts
Alaister Young b06d7cd98a [FE-2111] chore: swap custom domains reverify to query (#40777)
chore: swap custom domains reverify to query
2025-11-25 07:24:28 -07:00

6 lines
250 B
TypeScript

export const customDomainKeys = {
list: (projectRef: string | undefined) => ['projects', projectRef, 'custom-domains'] as const,
reverify: (projectRef: string | undefined) =>
['projects', projectRef, 'custom-domains', 'reverify'] as const,
}