feat: Login script setup (#2417)
Co-authored-by: Dominik Pschenitschni <mail@celement.de> Reviewed-on: https://kolaente.dev/vikunja/frontend/pulls/2417 Reviewed-by: konrad <k@knt.li> Co-authored-by: Dominik Pschenitschni <dpschen@noreply.kolaente.de> Co-committed-by: Dominik Pschenitschni <dpschen@noreply.kolaente.de>
This commit is contained in:
parent
940063784b
commit
63fb8a1962
6 changed files with 134 additions and 134 deletions
|
|
@ -4,6 +4,8 @@ import {parseURL} from 'ufo'
|
|||
import {HTTPFactory} from '@/http-common'
|
||||
import {objectToCamelCase} from '@/helpers/case'
|
||||
|
||||
import type {IProvider} from '@/types/IProvider'
|
||||
|
||||
export interface ConfigState {
|
||||
version: string,
|
||||
frontendUrl: string,
|
||||
|
|
@ -29,7 +31,7 @@ export interface ConfigState {
|
|||
openidConnect: {
|
||||
enabled: boolean,
|
||||
redirectUrl: string,
|
||||
providers: [],
|
||||
providers: IProvider[],
|
||||
},
|
||||
},
|
||||
}
|
||||
|
|
|
|||
Reference in a new issue