Files
Stirling-PDF/frontend/src/saas/constants/authProviders.ts
T
James BruntonandGitHub fa8c52b2be Add SaaS frontend code (#5879)
# Description of Changes
Adds the code for the SaaS frontend as proprietary code to the OSS repo.
This version of the code is adapted from 22/1/2026, which was the last
SaaS version based on the 'V2' design. This will move us closer to being
able to have the OSS products understand whether the user has a SaaS
account, and provide the correct UI in those cases.
2026-03-11 11:53:54 +00:00

14 lines
408 B
TypeScript

export type OAuthProviderId = 'google' | 'apple' | 'github' | 'azure'
export type OAuthProviderMeta = {
id: OAuthProviderId
label: string
file: string
isDisabled: boolean
}
export const oauthProviders: readonly OAuthProviderMeta[] = [
{ id: 'google', label: 'Google', file: 'google.svg', isDisabled: false },
{ id: 'github', label: 'GitHub', file: 'github.svg', isDisabled: false },
] as const