X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=client%2Fsrc%2Fapp%2Faccount%2Faccount.module.ts;h=380e9d2354d74a2458b9348a83e38e8e5bf1b9f2;hb=a685e25ca05f08ad1b3f7fbaccc8744727bd8d27;hp=53f6ba58e22ac22078d8e460966cd62011712573;hpb=693b1aba4675f7e3d850e0f6d07dbfc7bdff9b8c;p=github%2FChocobozzz%2FPeerTube.git diff --git a/client/src/app/account/account.module.ts b/client/src/app/account/account.module.ts index 53f6ba58e..380e9d235 100644 --- a/client/src/app/account/account.module.ts +++ b/client/src/app/account/account.module.ts @@ -1,9 +1,11 @@ -import { NgModule } from '@angular/core'; +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 { AccountRoutingModule } from './account-routing.module' +import { AccountComponent } from './account.component' +import { AccountChangePasswordComponent } from './account-change-password' +import { AccountDetailsComponent } from './account-details' +import { AccountService } from './account.service' +import { SharedModule } from '../shared' @NgModule({ imports: [ @@ -12,15 +14,15 @@ import { SharedModule } from '../shared'; ], declarations: [ - AccountComponent + AccountComponent, + AccountChangePasswordComponent, + AccountDetailsComponent ], exports: [ AccountComponent ], - providers: [ - AccountService - ] + providers: [] }) export class AccountModule { }