Switching to a named filters/single input on video-abuse
[oweals/peertube.git] / client / src / app / +my-account / my-account.module.ts
1 import { NgModule } from '@angular/core'
2 import { TableModule } from 'primeng/table'
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 { 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 { 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 import { MyAccountBlocklistComponent } from '@app/+my-account/my-account-blocklist/my-account-blocklist.component'
19 import { MyAccountServerBlocklistComponent } from '@app/+my-account/my-account-blocklist/my-account-server-blocklist.component'
20 import { MyAccountHistoryComponent } from '@app/+my-account/my-account-history/my-account-history.component'
21 import { MyAccountNotificationsComponent } from '@app/+my-account/my-account-notifications/my-account-notifications.component'
22 import { MyAccountNotificationPreferencesComponent } from '@app/+my-account/my-account-settings/my-account-notification-preferences'
23 import {
24   MyAccountVideoPlaylistCreateComponent
25 } from '@app/+my-account/my-account-video-playlists/my-account-video-playlist-create.component'
26 import {
27   MyAccountVideoPlaylistUpdateComponent
28 } from '@app/+my-account/my-account-video-playlists/my-account-video-playlist-update.component'
29 import { MyAccountVideoPlaylistsComponent } from '@app/+my-account/my-account-video-playlists/my-account-video-playlists.component'
30 import {
31   MyAccountVideoPlaylistElementsComponent
32 } from '@app/+my-account/my-account-video-playlists/my-account-video-playlist-elements.component'
33 import { DragDropModule } from '@angular/cdk/drag-drop'
34 import { MyAccountChangeEmailComponent } from '@app/+my-account/my-account-settings/my-account-change-email'
35
36 @NgModule({
37   imports: [
38     TableModule,
39     MyAccountRoutingModule,
40     AutoCompleteModule,
41     SharedModule,
42     TableModule,
43     InputSwitchModule,
44     DragDropModule
45   ],
46
47   declarations: [
48     MyAccountComponent,
49     MyAccountSettingsComponent,
50     MyAccountChangePasswordComponent,
51     MyAccountProfileComponent,
52     MyAccountChangeEmailComponent,
53
54     MyAccountVideosComponent,
55
56     VideoChangeOwnershipComponent,
57     MyAccountOwnershipComponent,
58     MyAccountAcceptOwnershipComponent,
59     MyAccountVideoImportsComponent,
60     MyAccountDangerZoneComponent,
61     MyAccountSubscriptionsComponent,
62     MyAccountBlocklistComponent,
63     MyAccountServerBlocklistComponent,
64     MyAccountHistoryComponent,
65     MyAccountNotificationsComponent,
66     MyAccountNotificationPreferencesComponent,
67
68     MyAccountVideoPlaylistCreateComponent,
69     MyAccountVideoPlaylistUpdateComponent,
70     MyAccountVideoPlaylistsComponent,
71     MyAccountVideoPlaylistElementsComponent
72   ],
73
74   exports: [
75     MyAccountComponent
76   ],
77
78   providers: []
79 })
80 export class MyAccountModule {
81 }