Compare commits

..

No commits in common. "940_assign_teams_via_authentik" and "main" have entirely different histories.

2 changed files with 2 additions and 4 deletions

View file

@ -14,7 +14,6 @@ export const redirectToProvider = (provider: IProvider, redirectUrl = '') => {
const state = createRandomID(24)
localStorage.setItem('state', state)
let scope = 'openid email profile'
if (provider.scope !== null) scope = provider.scope
window.location.href = `${provider.authUrl}?client_id=${provider.clientId}&redirect_uri=${redirectUrl}${provider.key}&response_type=code&scope=openid email profile${scope}&state=${state}`
window.location.href = `${provider.authUrl}?client_id=${provider.clientId}&redirect_uri=${redirectUrl}${provider.key}&response_type=code&scope=openid email profile&state=${state}`
}

View file

@ -3,5 +3,4 @@ export interface IProvider {
key: string;
authUrl: string;
clientId: string;
scope: string;
}