Add external login buttons

This commit is contained in:
Chocobozzz 2020-04-29 10:42:35 +02:00 committed by Chocobozzz
parent 9107d791e2
commit ebefc902f5
7 changed files with 125 additions and 41 deletions

View file

@ -14,12 +14,16 @@ export interface ServerConfigTheme extends ServerConfigPlugin {
export interface RegisteredExternalAuthConfig {
npmName: string
name: string
version: string
authName: string
authDisplayName: string
}
export interface RegisteredIdAndPassAuthConfig {
npmName: string
name: string
version: string
authName: string
weight: number
}