Feature/open id sign in (#35)

* added errorOpenIdLogin i18n key
* added openid authProvider
* added postOpenIdLogin api call
* added via-open-id component

Signed-off-by: Philip Molares <philip.molares@udo.edu>
This commit is contained in:
Philip Molares 2020-05-16 23:21:05 +02:00 committed by GitHub
parent d2c6ea464d
commit a50ad6e6c8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
8 changed files with 92 additions and 9 deletions

View file

@ -13,12 +13,13 @@ export const initialState: BackendConfigState = {
google: false,
saml: false,
oauth2: false,
email: false
email: false,
openid: false
},
customAuthNames: {
ldap: "",
saml: "",
oauth2: ""
oauth2: "",
saml: ""
},
specialLinks: {
privacy: "",

View file

@ -20,12 +20,13 @@ export interface AuthProvidersState {
saml: boolean,
oauth2: boolean,
email: boolean,
openid: boolean,
}
export interface CustomAuthNames {
ldap: string;
saml: string;
oauth2: string;
saml: string;
}
export interface SpecialLinks {