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