getIntegrationTypeLabel() — supabase Function Reference
Architecture documentation for the getIntegrationTypeLabel() function in ThirdPartyAuthForm.utils.ts from the supabase codebase.
Entity Profile
Dependency Diagram
graph TD 961184dc_9929_f906_f6a2_6e1432c44d7c["getIntegrationTypeLabel()"] 21de7ffb_92e0_78d2_1381_4f4347722738["ProviderDropdownItem()"] 21de7ffb_92e0_78d2_1381_4f4347722738 -->|calls| 961184dc_9929_f906_f6a2_6e1432c44d7c a8b0d122_606c_776f_0aa7_a4fa46d11298["IntegrationCard()"] a8b0d122_606c_776f_0aa7_a4fa46d11298 -->|calls| 961184dc_9929_f906_f6a2_6e1432c44d7c 861593ed_d4cc_b2ec_4f85_e0fbed9e8bf7["ThirdPartyAuthForm()"] 861593ed_d4cc_b2ec_4f85_e0fbed9e8bf7 -->|calls| 961184dc_9929_f906_f6a2_6e1432c44d7c style 961184dc_9929_f906_f6a2_6e1432c44d7c fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
apps/studio/components/interfaces/Auth/ThirdPartyAuthForm/ThirdPartyAuthForm.utils.ts lines 42–58
export const getIntegrationTypeLabel = (type: INTEGRATION_TYPES) => {
switch (type) {
case 'firebase':
return 'Firebase'
case 'auth0':
return 'Auth0'
case 'awsCognito':
return 'Amazon Cognito'
case 'clerk':
return 'Clerk'
case 'workos':
return 'WorkOS'
case 'custom':
default:
return 'Custom'
}
}
Domain
Subdomains
Source
Frequently Asked Questions
What does getIntegrationTypeLabel() do?
getIntegrationTypeLabel() is a function in the supabase codebase.
What calls getIntegrationTypeLabel()?
getIntegrationTypeLabel() is called by 3 function(s): IntegrationCard, ProviderDropdownItem, ThirdPartyAuthForm.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free