Moved Shibboleth route to DECLARATIONS array

This commit is contained in:
Julius Gruber
2019-07-15 11:44:31 +02:00
parent 8beece2f73
commit 8af15d06bc
2 changed files with 5 additions and 3 deletions

View File

@@ -112,7 +112,8 @@ const DECLARATIONS = [
FooterComponent, FooterComponent,
PageNotFoundComponent, PageNotFoundComponent,
NotificationComponent, NotificationComponent,
NotificationsBoardComponent NotificationsBoardComponent,
ShibbolethComponent
]; ];
const EXPORTS = [ const EXPORTS = [
@@ -128,8 +129,7 @@ const EXPORTS = [
...PROVIDERS ...PROVIDERS
], ],
declarations: [ declarations: [
...DECLARATIONS, ...DECLARATIONS
ShibbolethComponent,
], ],
exports: [ exports: [
...EXPORTS ...EXPORTS

View File

@@ -53,4 +53,6 @@ export class AuthStatus implements CacheableObject {
* The self link of this auth status' REST object * The self link of this auth status' REST object
*/ */
self: string; self: string;
ssoLoginUrl: string;
} }