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,
PageNotFoundComponent,
NotificationComponent,
NotificationsBoardComponent
NotificationsBoardComponent,
ShibbolethComponent
];
const EXPORTS = [
@@ -128,8 +129,7 @@ const EXPORTS = [
...PROVIDERS
],
declarations: [
...DECLARATIONS,
ShibbolethComponent,
...DECLARATIONS
],
exports: [
...EXPORTS

View File

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