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