]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - client/src/app/+my-account/my-account.module.ts
aeda637c244bf582d748415af877a04c8bb0947e
[github/Chocobozzz/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 import { MyAccountNotificationsComponent } from '@app/+my-account/my-account-notifications/my-account-notifications.component'
27 import { MyAccountNotificationPreferencesComponent } from '@app/+my-account/my-account-settings/my-account-notification-preferences'
28 import { MyAccountVideoPlaylistCreateComponent } from '@app/+my-account/my-account-video-playlists/my-account-video-playlist-create.component'
29 import { MyAccountVideoPlaylistUpdateComponent } from '@app/+my-account/my-account-video-playlists/my-account-video-playlist-update.component'
30 import { MyAccountVideoPlaylistsComponent } from '@app/+my-account/my-account-video-playlists/my-account-video-playlists.component'
31 import { MyAccountVideoPlaylistElementsComponent } from '@app/+my-account/my-account-video-playlists/my-account-video-playlist-elements.component'
32 import { DragDropModule } from '@angular/cdk/drag-drop'
33 import { MyAccountChangeEmailComponent } from '@app/+my-account/my-account-settings/my-account-change-email'
34 import { MultiSelectModule } from 'primeng/primeng'
35
36 @NgModule({
37 imports: [
38 TableModule,
39 MyAccountRoutingModule,
40 AutoCompleteModule,
41 SharedModule,
42 TableModule,
43 InputSwitchModule,
44 DragDropModule,
45 MultiSelectModule
46 ],
47
48 declarations: [
49 MyAccountComponent,
50 MyAccountSettingsComponent,
51 MyAccountChangePasswordComponent,
52 MyAccountVideoSettingsComponent,
53 MyAccountProfileComponent,
54 MyAccountChangeEmailComponent,
55
56 MyAccountVideosComponent,
57
58 VideoChangeOwnershipComponent,
59 MyAccountOwnershipComponent,
60 MyAccountAcceptOwnershipComponent,
61 MyAccountVideoChannelsComponent,
62 MyAccountVideoChannelCreateComponent,
63 MyAccountVideoChannelUpdateComponent,
64 ActorAvatarInfoComponent,
65 MyAccountVideoImportsComponent,
66 MyAccountDangerZoneComponent,
67 MyAccountSubscriptionsComponent,
68 MyAccountBlocklistComponent,
69 MyAccountServerBlocklistComponent,
70 MyAccountHistoryComponent,
71 MyAccountNotificationsComponent,
72 MyAccountNotificationPreferencesComponent,
73
74 MyAccountVideoPlaylistCreateComponent,
75 MyAccountVideoPlaylistUpdateComponent,
76 MyAccountVideoPlaylistsComponent,
77 MyAccountVideoPlaylistElementsComponent
78 ],
79
80 exports: [
81 MyAccountComponent
82 ],
83
84 providers: []
85 })
86 export class MyAccountModule { }