]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/my-account/my-account.module.ts
Fix account link in the menu
[github/Chocobozzz/PeerTube.git] / client / src / app / my-account / my-account.module.ts
CommitLineData
4bb6886d
C
1import { NgModule } from '@angular/core'
2import { SharedModule } from '../shared'
3import { MyAccountRoutingModule } from './my-account-routing.module'
4import { MyAccountChangePasswordComponent } from './my-account-settings/my-account-change-password/my-account-change-password.component'
5import { MyAccountDetailsComponent } from './my-account-settings/my-account-details/my-account-details.component'
6import { MyAccountSettingsComponent } from './my-account-settings/my-account-settings.component'
7import { MyAccountComponent } from './my-account.component'
8import { MyAccountVideosComponent } from './my-account-videos/my-account-videos.component'
9
10@NgModule({
11 imports: [
12 MyAccountRoutingModule,
13 SharedModule
14 ],
15
16 declarations: [
17 MyAccountComponent,
18 MyAccountSettingsComponent,
19 MyAccountChangePasswordComponent,
20 MyAccountDetailsComponent,
21 MyAccountVideosComponent
22 ],
23
24 exports: [
25 MyAccountComponent
26 ],
27
28 providers: []
29})
30export class MyAccountModule { }