]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - client/src/app/+my-account/my-account.module.ts
Fix missing module for my-account
[github/Chocobozzz/PeerTube.git] / client / src / app / +my-account / my-account.module.ts
1 import { AutoCompleteModule } from 'primeng/autocomplete'
2 import { InputSwitchModule } from 'primeng/inputswitch'
3 import { TableModule } from 'primeng/table'
4 import { DragDropModule } from '@angular/cdk/drag-drop'
5 import { NgModule } from '@angular/core'
6 import { SharedFormModule } from '@app/shared/shared-forms'
7 import { SharedGlobalIconModule } from '@app/shared/shared-icons'
8 import { SharedMainModule } from '@app/shared/shared-main'
9 import { SharedModerationModule } from '@app/shared/shared-moderation'
10 import { SharedUserInterfaceSettingsModule } from '@app/shared/shared-user-settings'
11 import { SharedUserSubscriptionModule } from '@app/shared/shared-user-subscription/shared-user-subscription.module'
12 import { SharedVideoMiniatureModule } from '@app/shared/shared-video-miniature'
13 import { SharedVideoPlaylistModule } from '@app/shared/shared-video-playlist/shared-video-playlist.module'
14 import { MyAccountBlocklistComponent } from './my-account-blocklist/my-account-blocklist.component'
15 import { MyAccountServerBlocklistComponent } from './my-account-blocklist/my-account-server-blocklist.component'
16 import { MyAccountHistoryComponent } from './my-account-history/my-account-history.component'
17 import { MyAccountNotificationsComponent } from './my-account-notifications/my-account-notifications.component'
18 import { MyAccountAcceptOwnershipComponent } from './my-account-ownership/my-account-accept-ownership/my-account-accept-ownership.component'
19 import { MyAccountOwnershipComponent } from './my-account-ownership/my-account-ownership.component'
20 import { MyAccountRoutingModule } from './my-account-routing.module'
21 import { MyAccountChangeEmailComponent } from './my-account-settings/my-account-change-email'
22 import { MyAccountChangePasswordComponent } from './my-account-settings/my-account-change-password/my-account-change-password.component'
23 import { MyAccountDangerZoneComponent } from './my-account-settings/my-account-danger-zone'
24 import { MyAccountNotificationPreferencesComponent } from './my-account-settings/my-account-notification-preferences'
25 import { MyAccountProfileComponent } from './my-account-settings/my-account-profile/my-account-profile.component'
26 import { MyAccountSettingsComponent } from './my-account-settings/my-account-settings.component'
27 import { MyAccountSubscriptionsComponent } from './my-account-subscriptions/my-account-subscriptions.component'
28 import { MyAccountVideoImportsComponent } from './my-account-video-imports/my-account-video-imports.component'
29 import { MyAccountVideoPlaylistCreateComponent } from './my-account-video-playlists/my-account-video-playlist-create.component'
30 import { MyAccountVideoPlaylistElementsComponent } from './my-account-video-playlists/my-account-video-playlist-elements.component'
31 import { MyAccountVideoPlaylistUpdateComponent } from './my-account-video-playlists/my-account-video-playlist-update.component'
32 import { MyAccountVideoPlaylistsComponent } from './my-account-video-playlists/my-account-video-playlists.component'
33 import { MyAccountVideosComponent } from './my-account-videos/my-account-videos.component'
34 import { VideoChangeOwnershipComponent } from './my-account-videos/video-change-ownership/video-change-ownership.component'
35 import { MyAccountComponent } from './my-account.component'
36 import { TopMenuDropdownComponent } from './top-menu-dropdown.component'
37
38 @NgModule({
39 imports: [
40 MyAccountRoutingModule,
41
42 AutoCompleteModule,
43 TableModule,
44 InputSwitchModule,
45 DragDropModule,
46
47 SharedMainModule,
48 SharedFormModule,
49 SharedModerationModule,
50 SharedVideoMiniatureModule,
51 SharedUserSubscriptionModule,
52 SharedVideoPlaylistModule,
53 SharedUserInterfaceSettingsModule,
54 SharedGlobalIconModule
55 ],
56
57 declarations: [
58 MyAccountComponent,
59 MyAccountSettingsComponent,
60 MyAccountChangePasswordComponent,
61 MyAccountProfileComponent,
62 MyAccountChangeEmailComponent,
63
64 MyAccountVideosComponent,
65
66 VideoChangeOwnershipComponent,
67 MyAccountOwnershipComponent,
68 MyAccountAcceptOwnershipComponent,
69 MyAccountVideoImportsComponent,
70 MyAccountDangerZoneComponent,
71 MyAccountSubscriptionsComponent,
72 MyAccountBlocklistComponent,
73 MyAccountServerBlocklistComponent,
74 MyAccountHistoryComponent,
75 MyAccountNotificationsComponent,
76 MyAccountNotificationPreferencesComponent,
77
78 MyAccountVideoPlaylistCreateComponent,
79 MyAccountVideoPlaylistUpdateComponent,
80 MyAccountVideoPlaylistsComponent,
81 MyAccountVideoPlaylistElementsComponent,
82
83 TopMenuDropdownComponent
84 ],
85
86 exports: [
87 MyAccountComponent
88 ],
89
90 providers: []
91 })
92 export class MyAccountModule {
93 }