aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/app.module.ts
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2018-01-30 13:27:07 +0100
committerChocobozzz <me@florianbigard.com>2018-01-30 13:27:07 +0100
commitecb4e35f4e6c7304cb274593c13cb47fd5078b75 (patch)
tree1e238002340bc521afde59d52f406e41298a7aac /client/src/app/app.module.ts
parent80d1057bfcd3582af0dacf5ccd5a7a93ef95410b (diff)
downloadPeerTube-ecb4e35f4e6c7304cb274593c13cb47fd5078b75.tar.gz
PeerTube-ecb4e35f4e6c7304cb274593c13cb47fd5078b75.tar.zst
PeerTube-ecb4e35f4e6c7304cb274593c13cb47fd5078b75.zip
Add ability to reset our password
Diffstat (limited to 'client/src/app/app.module.ts')
-rw-r--r--client/src/app/app.module.ts14
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 @@
1import { NgModule } from '@angular/core' 1import { NgModule } from '@angular/core'
2import { BrowserModule } from '@angular/platform-browser' 2import { BrowserModule } from '@angular/platform-browser'
3import { ResetPasswordModule } from '@app/reset-password'
3 4
4import { MetaModule, MetaLoader, MetaStaticLoader, PageTitlePositioning } from '@ngx-meta/core' 5import { MetaLoader, MetaModule, MetaStaticLoader, PageTitlePositioning } from '@ngx-meta/core'
6
7import { AccountModule } from './account'
5 8
6import { AppRoutingModule } from './app-routing.module' 9import { AppRoutingModule } from './app-routing.module'
7import { AppComponent } from './app.component' 10import { AppComponent } from './app.component'
8
9import { AccountModule } from './account'
10import { CoreModule } from './core' 11import { CoreModule } from './core'
12import { HeaderComponent } from './header'
11import { LoginModule } from './login' 13import { LoginModule } from './login'
12import { SignupModule } from './signup' 14import { MenuComponent } from './menu'
13import { SharedModule } from './shared' 15import { SharedModule } from './shared'
16import { SignupModule } from './signup'
14import { VideosModule } from './videos' 17import { VideosModule } from './videos'
15import { MenuComponent } from './menu'
16import { HeaderComponent } from './header'
17 18
18export function metaFactory (): MetaLoader { 19export 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,