]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame_incremental - 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
... / ...
CommitLineData
1import { AutoCompleteModule } from 'primeng/autocomplete'
2import { InputSwitchModule } from 'primeng/inputswitch'
3import { TableModule } from 'primeng/table'
4import { DragDropModule } from '@angular/cdk/drag-drop'
5import { NgModule } from '@angular/core'
6import { SharedAbuseListModule } from '@app/shared/shared-abuse-list'
7import { SharedFormModule } from '@app/shared/shared-forms'
8import { SharedGlobalIconModule } from '@app/shared/shared-icons'
9import { SharedMainModule } from '@app/shared/shared-main'
10import { SharedModerationModule } from '@app/shared/shared-moderation'
11import { SharedUserInterfaceSettingsModule } from '@app/shared/shared-user-settings'
12import { SharedUserSubscriptionModule } from '@app/shared/shared-user-subscription/shared-user-subscription.module'
13import { SharedVideoMiniatureModule } from '@app/shared/shared-video-miniature'
14import { SharedVideoPlaylistModule } from '@app/shared/shared-video-playlist/shared-video-playlist.module'
15import { MyAccountAbusesListComponent } from './my-account-abuses/my-account-abuses-list.component'
16import { MyAccountBlocklistComponent } from './my-account-blocklist/my-account-blocklist.component'
17import { MyAccountServerBlocklistComponent } from './my-account-blocklist/my-account-server-blocklist.component'
18import { MyAccountHistoryComponent } from './my-account-history/my-account-history.component'
19import { MyAccountNotificationsComponent } from './my-account-notifications/my-account-notifications.component'
20import { MyAccountAcceptOwnershipComponent } from './my-account-ownership/my-account-accept-ownership/my-account-accept-ownership.component'
21import { MyAccountOwnershipComponent } from './my-account-ownership/my-account-ownership.component'
22import { MyAccountRoutingModule } from './my-account-routing.module'
23import { MyAccountChangeEmailComponent } from './my-account-settings/my-account-change-email'
24import { MyAccountChangePasswordComponent } from './my-account-settings/my-account-change-password/my-account-change-password.component'
25import { MyAccountDangerZoneComponent } from './my-account-settings/my-account-danger-zone'
26import { MyAccountNotificationPreferencesComponent } from './my-account-settings/my-account-notification-preferences'
27import { MyAccountProfileComponent } from './my-account-settings/my-account-profile/my-account-profile.component'
28import { MyAccountSettingsComponent } from './my-account-settings/my-account-settings.component'
29import { MyAccountSubscriptionsComponent } from './my-account-subscriptions/my-account-subscriptions.component'
30import { MyAccountVideoImportsComponent } from './my-account-video-imports/my-account-video-imports.component'
31import { MyAccountVideoPlaylistCreateComponent } from './my-account-video-playlists/my-account-video-playlist-create.component'
32import { MyAccountVideoPlaylistElementsComponent } from './my-account-video-playlists/my-account-video-playlist-elements.component'
33import { MyAccountVideoPlaylistUpdateComponent } from './my-account-video-playlists/my-account-video-playlist-update.component'
34import { MyAccountVideoPlaylistsComponent } from './my-account-video-playlists/my-account-video-playlists.component'
35import { MyAccountVideosComponent } from './my-account-videos/my-account-videos.component'
36import { VideoChangeOwnershipComponent } from './my-account-videos/video-change-ownership/video-change-ownership.component'
37import { 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})
93export class MyAccountModule {
94}