Merge branch 'master' into develop
[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 { AutoCompleteModule } from 'primeng/autocomplete'
4 import { SharedModule } from '../shared'
5 import { MyAccountRoutingModule } from './my-account-routing.module'
6 import { MyAccountChangePasswordComponent } from './my-account-settings/my-account-change-password/my-account-change-password.component'
7 import { MyAccountVideoSettingsComponent } from './my-account-settings/my-account-video-settings/my-account-video-settings.component'
8 import { MyAccountSettingsComponent } from './my-account-settings/my-account-settings.component'
9 import { MyAccountComponent } from './my-account.component'
10 import { MyAccountVideosComponent } from './my-account-videos/my-account-videos.component'
11 import { VideoChangeOwnershipComponent } from './my-account-videos/video-change-ownership/video-change-ownership.component'
12 import { MyAccountOwnershipComponent } from './my-account-ownership/my-account-ownership.component'
13 import { MyAccountAcceptOwnershipComponent } from './my-account-ownership/my-account-accept-ownership/my-account-accept-ownership.component'
14 import { MyAccountProfileComponent } from '@app/+my-account/my-account-settings/my-account-profile/my-account-profile.component'
15 import { MyAccountVideoChannelsComponent } from '@app/+my-account/my-account-video-channels/my-account-video-channels.component'
16 import { MyAccountVideoChannelCreateComponent } from '@app/+my-account/my-account-video-channels/my-account-video-channel-create.component'
17 import { MyAccountVideoChannelUpdateComponent } from '@app/+my-account/my-account-video-channels/my-account-video-channel-update.component'
18 import { ActorAvatarInfoComponent } from '@app/+my-account/shared/actor-avatar-info.component'
19 import { MyAccountVideoImportsComponent } from '@app/+my-account/my-account-video-imports/my-account-video-imports.component'
20 import { MyAccountDangerZoneComponent } from '@app/+my-account/my-account-settings/my-account-danger-zone'
21 import { MyAccountSubscriptionsComponent } from '@app/+my-account/my-account-subscriptions/my-account-subscriptions.component'
22 import { MyAccountBlocklistComponent } from '@app/+my-account/my-account-blocklist/my-account-blocklist.component'
23 import { MyAccountServerBlocklistComponent } from '@app/+my-account/my-account-blocklist/my-account-server-blocklist.component'
24
25 @NgModule({
26   imports: [
27     TableModule,
28     MyAccountRoutingModule,
29     AutoCompleteModule,
30     SharedModule,
31     TableModule
32   ],
33
34   declarations: [
35     MyAccountComponent,
36     MyAccountSettingsComponent,
37     MyAccountChangePasswordComponent,
38     MyAccountVideoSettingsComponent,
39     MyAccountProfileComponent,
40     MyAccountVideosComponent,
41     VideoChangeOwnershipComponent,
42     MyAccountOwnershipComponent,
43     MyAccountAcceptOwnershipComponent,
44     MyAccountVideoChannelsComponent,
45     MyAccountVideoChannelCreateComponent,
46     MyAccountVideoChannelUpdateComponent,
47     ActorAvatarInfoComponent,
48     MyAccountVideoImportsComponent,
49     MyAccountDangerZoneComponent,
50     MyAccountSubscriptionsComponent,
51     MyAccountBlocklistComponent,
52     MyAccountServerBlocklistComponent
53   ],
54
55   exports: [
56     MyAccountComponent
57   ],
58
59   providers: []
60 })
61 export class MyAccountModule { }