2023-02-24 11:37:19 -08:00
|
|
|
import config from '@/config';
|
2023-03-06 00:44:25 -08:00
|
|
|
import type { AuthProviderType } from '@/databases/entities/AuthIdentity';
|
2023-02-24 11:37:19 -08:00
|
|
|
|
|
|
|
export function isSamlCurrentAuthenticationMethod(): boolean {
|
|
|
|
return config.getEnv('userManagement.authenticationMethod') === 'saml';
|
|
|
|
}
|
|
|
|
|
|
|
|
export function isSsoJustInTimeProvisioningEnabled(): boolean {
|
|
|
|
return config.getEnv('sso.justInTimeProvisioning');
|
|
|
|
}
|
|
|
|
|
|
|
|
export function doRedirectUsersFromLoginToSsoFlow(): boolean {
|
|
|
|
return config.getEnv('sso.redirectLoginToSso');
|
|
|
|
}
|
2023-03-03 01:05:30 -08:00
|
|
|
|
2023-03-06 00:44:25 -08:00
|
|
|
export function setCurrentAuthenticationMethod(authenticationMethod: AuthProviderType): void {
|
2023-03-03 01:05:30 -08:00
|
|
|
config.set('userManagement.authenticationMethod', authenticationMethod);
|
|
|
|
}
|