Add local user subscriptions
[oweals/peertube.git] / client / src / app / +my-account / my-account.module.ts
1 import { TableModule } from 'primeng/table'
2 import { NgModule } from '@angular/core'
3 import { SharedModule } from '../shared'
4 import { MyAccountRoutingModule } from './my-account-routing.module'
5 import { MyAccountChangePasswordComponent } from './my-account-settings/my-account-change-password/my-account-change-password.component'
6 import { MyAccountVideoSettingsComponent } from './my-account-settings/my-account-video-settings/my-account-video-settings.component'
7 import { MyAccountSettingsComponent } from './my-account-settings/my-account-settings.component'
8 import { MyAccountComponent } from './my-account.component'
9 import { MyAccountVideosComponent } from './my-account-videos/my-account-videos.component'
10 import { MyAccountProfileComponent } from '@app/+my-account/my-account-settings/my-account-profile/my-account-profile.component'
11 import { MyAccountVideoChannelsComponent } from '@app/+my-account/my-account-video-channels/my-account-video-channels.component'
12 import { MyAccountVideoChannelCreateComponent } from '@app/+my-account/my-account-video-channels/my-account-video-channel-create.component'
13 import { MyAccountVideoChannelUpdateComponent } from '@app/+my-account/my-account-video-channels/my-account-video-channel-update.component'
14 import { ActorAvatarInfoComponent } from '@app/+my-account/shared/actor-avatar-info.component'
15 import { MyAccountVideoImportsComponent } from '@app/+my-account/my-account-video-imports/my-account-video-imports.component'
16 import { MyAccountDangerZoneComponent } from '@app/+my-account/my-account-settings/my-account-danger-zone'
17 import { MyAccountSubscriptionsComponent } from '@app/+my-account/my-account-subscriptions/my-account-subscriptions.component'
18
19 @NgModule({
20   imports: [
21     MyAccountRoutingModule,
22     SharedModule,
23     TableModule
24   ],
25
26   declarations: [
27     MyAccountComponent,
28     MyAccountSettingsComponent,
29     MyAccountChangePasswordComponent,
30     MyAccountVideoSettingsComponent,
31     MyAccountProfileComponent,
32     MyAccountVideosComponent,
33     MyAccountVideoChannelsComponent,
34     MyAccountVideoChannelCreateComponent,
35     MyAccountVideoChannelUpdateComponent,
36     ActorAvatarInfoComponent,
37     MyAccountVideoImportsComponent,
38     MyAccountDangerZoneComponent,
39     MyAccountSubscriptionsComponent
40   ],
41
42   exports: [
43     MyAccountComponent
44   ],
45
46   providers: []
47 })
48 export class MyAccountModule { }