mirror of
https://github.com/supabase/supabase.git
synced 2026-05-12 04:16:08 +08:00
6 lines
250 B
TypeScript
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,
|
|
}
|