Remove unused field (#3480)

This commit is contained in:
Maurizio Vitale 2018-06-13 12:49:01 +01:00 committed by Eugenio Romano
parent 992cd38216
commit 928340f65b
2 changed files with 0 additions and 3 deletions

View File

@ -474,7 +474,6 @@
"secret": { "type": "string" }, "secret": { "type": "string" },
"redirectUri": { "type": "string" }, "redirectUri": { "type": "string" },
"redirectUriLogout": { "type": "string" }, "redirectUriLogout": { "type": "string" },
"silentRefreshRedirectUri": { "type": "string" },
"scope": { "type": "string" } "scope": { "type": "string" }
} }
}, },

View File

@ -22,8 +22,6 @@ export interface OauthConfigModel {
implicitFlow: boolean; implicitFlow: boolean;
redirectUri: string; redirectUri: string;
silentLogin?: boolean; silentLogin?: boolean;
silentRefreshRedirectUri?: string;
secret?: string; secret?: string;
refreshTokenTimeout?: number;
redirectUriLogout?: string; redirectUriLogout?: string;
} }