aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/account/account.module.ts
diff options
context:
space:
mode:
authorChocobozzz <florian.bigard@gmail.com>2017-04-06 21:21:03 +0200
committerChocobozzz <florian.bigard@gmail.com>2017-04-06 21:21:03 +0200
commitaf5e743b01f20f24d0c25e786d57f557b21f3a24 (patch)
tree5186d587135f13f00687f8ed6cd8504cdd35799f /client/src/app/account/account.module.ts
parent92fb909c9b4a92a00b0d0da7629e6fb003de281b (diff)
downloadPeerTube-af5e743b01f20f24d0c25e786d57f557b21f3a24.tar.gz
PeerTube-af5e743b01f20f24d0c25e786d57f557b21f3a24.tar.zst
PeerTube-af5e743b01f20f24d0c25e786d57f557b21f3a24.zip
Client: add ability for user to change nsfw settings
Diffstat (limited to 'client/src/app/account/account.module.ts')
-rw-r--r--client/src/app/account/account.module.ts6
1 files changed, 5 insertions, 1 deletions
diff --git a/client/src/app/account/account.module.ts b/client/src/app/account/account.module.ts
index 75f2ee6f9..f6c141ae6 100644
--- a/client/src/app/account/account.module.ts
+++ b/client/src/app/account/account.module.ts
@@ -2,6 +2,8 @@ import { NgModule } from '@angular/core';
2 2
3import { AccountRoutingModule } from './account-routing.module'; 3import { AccountRoutingModule } from './account-routing.module';
4import { AccountComponent } from './account.component'; 4import { AccountComponent } from './account.component';
5import { AccountChangePasswordComponent } from './account-change-password';
6import { AccountDetailsComponent } from './account-details';
5import { AccountService } from './account.service'; 7import { AccountService } from './account.service';
6import { SharedModule } from '../shared'; 8import { SharedModule } from '../shared';
7 9
@@ -12,7 +14,9 @@ import { SharedModule } from '../shared';
12 ], 14 ],
13 15
14 declarations: [ 16 declarations: [
15 AccountComponent 17 AccountComponent,
18 AccountChangePasswordComponent,
19 AccountDetailsComponent
16 ], 20 ],
17 21
18 exports: [ 22 exports: [