mirror of
https://github.com/supabase/supabase.git
synced 2026-05-06 08:56:46 -04:00
a66278b811
* fix: add jsr:@std/path module * fix: use relative paths for files in editor * Smol fix --------- Co-authored-by: Joshen Lim <joshenlimek@gmail.com>
8 lines
418 B
TypeScript
8 lines
418 B
TypeScript
export const edgeFunctionsKeys = {
|
|
list: (projectRef: string | undefined) => ['projects', projectRef, 'edge-functions'] as const,
|
|
detail: (projectRef: string | undefined, slug: string | undefined) =>
|
|
['projects', projectRef, 'edge-function', slug, 'detail'] as const,
|
|
body: (projectRef: string | undefined, slug: string | undefined) =>
|
|
['projects', projectRef, 'edge-function', slug, 'body'] as const,
|
|
}
|