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