]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - client/src/app/+my-account/my-account.module.ts
2088273e6d6e907b673c6806aad0558214f2fdb4
[github/Chocobozzz/PeerTube.git] / client / src / app / +my-account / my-account.module.ts
1 import { NgModule } from '@angular/core'
2 import { SharedModule } from '../shared'
3 import { MyAccountRoutingModule } from './my-account-routing.module'
4 import { MyAccountChangePasswordComponent } from './my-account-settings/my-account-change-password/my-account-change-password.component'
5 import { MyAccountVideoSettingsComponent } from './my-account-settings/my-account-video-settings/my-account-video-settings.component'
6 import { MyAccountSettingsComponent } from './my-account-settings/my-account-settings.component'
7 import { MyAccountComponent } from './my-account.component'
8 import { MyAccountVideosComponent } from './my-account-videos/my-account-videos.component'
9 import { MyAccountProfileComponent } from '@app/+my-account/my-account-settings/my-account-profile/my-account-profile.component'
10 import { MyAccountVideoChannelsComponent } from '@app/+my-account/my-account-video-channels/my-account-video-channels.component'
11 import { MyAccountVideoChannelCreateComponent } from '@app/+my-account/my-account-video-channels/my-account-video-channel-create.component'
12 import { MyAccountVideoChannelUpdateComponent } from '@app/+my-account/my-account-video-channels/my-account-video-channel-update.component'
13 import { ActorAvatarInfoComponent } from '@app/+my-account/shared/actor-avatar-info.component'
14
15 @NgModule({
16 imports: [
17 MyAccountRoutingModule,
18 SharedModule
19 ],
20
21 declarations: [
22 MyAccountComponent,
23 MyAccountSettingsComponent,
24 MyAccountChangePasswordComponent,
25 MyAccountVideoSettingsComponent,
26 MyAccountProfileComponent,
27 MyAccountVideosComponent,
28 MyAccountVideoChannelsComponent,
29 MyAccountVideoChannelCreateComponent,
30 MyAccountVideoChannelUpdateComponent,
31 ActorAvatarInfoComponent
32 ],
33
34 exports: [
35 MyAccountComponent
36 ],
37
38 providers: []
39 })
40 export class MyAccountModule { }