diff options
Diffstat (limited to 'client/src/app/app.module.ts')
-rw-r--r-- | client/src/app/app.module.ts | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/client/src/app/app.module.ts b/client/src/app/app.module.ts index e69edbc4b..ddcaf3f48 100644 --- a/client/src/app/app.module.ts +++ b/client/src/app/app.module.ts | |||
@@ -1,19 +1,20 @@ | |||
1 | import { NgModule } from '@angular/core' | 1 | import { NgModule } from '@angular/core' |
2 | import { BrowserModule } from '@angular/platform-browser' | 2 | import { BrowserModule } from '@angular/platform-browser' |
3 | import { ResetPasswordModule } from '@app/reset-password' | ||
3 | 4 | ||
4 | import { MetaModule, MetaLoader, MetaStaticLoader, PageTitlePositioning } from '@ngx-meta/core' | 5 | import { MetaLoader, MetaModule, MetaStaticLoader, PageTitlePositioning } from '@ngx-meta/core' |
6 | |||
7 | import { AccountModule } from './account' | ||
5 | 8 | ||
6 | import { AppRoutingModule } from './app-routing.module' | 9 | import { AppRoutingModule } from './app-routing.module' |
7 | import { AppComponent } from './app.component' | 10 | import { AppComponent } from './app.component' |
8 | |||
9 | import { AccountModule } from './account' | ||
10 | import { CoreModule } from './core' | 11 | import { CoreModule } from './core' |
12 | import { HeaderComponent } from './header' | ||
11 | import { LoginModule } from './login' | 13 | import { LoginModule } from './login' |
12 | import { SignupModule } from './signup' | 14 | import { MenuComponent } from './menu' |
13 | import { SharedModule } from './shared' | 15 | import { SharedModule } from './shared' |
16 | import { SignupModule } from './signup' | ||
14 | import { VideosModule } from './videos' | 17 | import { VideosModule } from './videos' |
15 | import { MenuComponent } from './menu' | ||
16 | import { HeaderComponent } from './header' | ||
17 | 18 | ||
18 | export function metaFactory (): MetaLoader { | 19 | export function metaFactory (): MetaLoader { |
19 | return new MetaStaticLoader({ | 20 | return new MetaStaticLoader({ |
@@ -46,6 +47,7 @@ export function metaFactory (): MetaLoader { | |||
46 | AccountModule, | 47 | AccountModule, |
47 | CoreModule, | 48 | CoreModule, |
48 | LoginModule, | 49 | LoginModule, |
50 | ResetPasswordModule, | ||
49 | SignupModule, | 51 | SignupModule, |
50 | SharedModule, | 52 | SharedModule, |
51 | VideosModule, | 53 | VideosModule, |