]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blobdiff - client/src/app/account/account.module.ts
Issue #195 : When uploading, warn when the user quits the page (#222)
[github/Chocobozzz/PeerTube.git] / client / src / app / account / account.module.ts
index 53f6ba58e22ac22078d8e460966cd62011712573..2299c19199dd6e129c653f7b07d67b895c887e44 100644 (file)
@@ -1,9 +1,11 @@
-import { NgModule } from '@angular/core';
-
-import { AccountRoutingModule } from './account-routing.module';
-import { AccountComponent } from './account.component';
-import { AccountService } from './account.service';
-import { SharedModule } from '../shared';
+import { NgModule } from '@angular/core'
+import { SharedModule } from '../shared'
+import { AccountRoutingModule } from './account-routing.module'
+import { AccountChangePasswordComponent } from './account-settings/account-change-password/account-change-password.component'
+import { AccountDetailsComponent } from './account-settings/account-details/account-details.component'
+import { AccountSettingsComponent } from './account-settings/account-settings.component'
+import { AccountComponent } from './account.component'
+import { AccountVideosComponent } from './account-videos/account-videos.component'
 
 @NgModule({
   imports: [
@@ -12,15 +14,17 @@ import { SharedModule } from '../shared';
   ],
 
   declarations: [
-    AccountComponent
+    AccountComponent,
+    AccountSettingsComponent,
+    AccountChangePasswordComponent,
+    AccountDetailsComponent,
+    AccountVideosComponent
   ],
 
   exports: [
     AccountComponent
   ],
 
-  providers: [
-    AccountService
-  ]
+  providers: []
 })
 export class AccountModule { }