diff options
Diffstat (limited to 'client/src/app/login/login-routing.module.ts')
-rw-r--r-- | client/src/app/login/login-routing.module.ts | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/client/src/app/login/login-routing.module.ts b/client/src/app/login/login-routing.module.ts index 4d8913041..5a41f4e7e 100644 --- a/client/src/app/login/login-routing.module.ts +++ b/client/src/app/login/login-routing.module.ts | |||
@@ -1,9 +1,8 @@ | |||
1 | import { NgModule } from '@angular/core' | 1 | import { NgModule } from '@angular/core' |
2 | import { RouterModule, Routes } from '@angular/router' | 2 | import { RouterModule, Routes } from '@angular/router' |
3 | |||
4 | import { MetaGuard } from '@ngx-meta/core' | 3 | import { MetaGuard } from '@ngx-meta/core' |
5 | |||
6 | import { LoginComponent } from './login.component' | 4 | import { LoginComponent } from './login.component' |
5 | import { ServerConfigResolver } from '@app/core/routing/server-config-resolver.service' | ||
7 | 6 | ||
8 | const loginRoutes: Routes = [ | 7 | const loginRoutes: Routes = [ |
9 | { | 8 | { |
@@ -14,6 +13,9 @@ const loginRoutes: Routes = [ | |||
14 | meta: { | 13 | meta: { |
15 | title: 'Login' | 14 | title: 'Login' |
16 | } | 15 | } |
16 | }, | ||
17 | resolve: { | ||
18 | serverConfigLoaded: ServerConfigResolver | ||
17 | } | 19 | } |
18 | } | 20 | } |
19 | ] | 21 | ] |