Fix login provider custom name not showing up on login page

Signed-off-by: Thomas Citharel <tcit@tcit.fr>
This commit is contained in:
Thomas Citharel
2020-10-29 10:24:39 +01:00
parent 0ee3ac9da5
commit cdf7533fdc
3 changed files with 14 additions and 11 deletions

View File

@@ -1,6 +1,11 @@
import { InstanceTermsType, InstancePrivacyType } from "./admin.model";
import { IProvider } from "./resource";
export interface IOAuthProvider {
id: string;
label: string;
}
export interface IConfig {
name: string;
description: string;
@@ -82,8 +87,3 @@ export interface IConfig {
oauthProviders: IOAuthProvider[];
};
}
export interface IOAuthProvider {
id: string;
label: string;
}