Files
supabase/apps/studio/data/oauth-secrets/keys.ts
Jonathan Summers-Muir aefb34fd9c Feat: Adds Oauth client management (#34591)
* adds Oauth client update

* moar

* Update OAuthSecrets.tsx

* Fix TS issues

* moar

* Minor refactors

* Minor refactors

* Tidy up

* Clean up

* Clean up

---------

Co-authored-by: Joshen Lim <joshenlimek@gmail.com>
2025-04-07 17:43:46 +08:00

5 lines
181 B
TypeScript

export const clientSecretKeys = {
list: (slug: string | undefined, appId: string | undefined) =>
['organizations', slug, 'oauth', 'apps', appId, 'client-secrets'] as const,
}