]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - 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
74d63469 1import { AutoCompleteModule } from 'primeng/autocomplete'
276d9652 2import { InputSwitchModule } from 'primeng/inputswitch'
67ed6552
C
3import { TableModule } from 'primeng/table'
4import { DragDropModule } from '@angular/cdk/drag-drop'
5import { NgModule } from '@angular/core'
94148c90 6import { SharedAbuseListModule } from '@app/shared/shared-abuse-list'
983aa6f2 7import { SharedFormModule } from '@app/shared/shared-forms'
67ed6552
C
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'
94148c90 15import { MyAccountAbusesListComponent } from './my-account-abuses/my-account-abuses-list.component'
67ed6552
C
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'
4bb6886d 22import { MyAccountRoutingModule } from './my-account-routing.module'
67ed6552 23import { MyAccountChangeEmailComponent } from './my-account-settings/my-account-change-email'
4bb6886d 24import { MyAccountChangePasswordComponent } from './my-account-settings/my-account-change-password/my-account-change-password.component'
67ed6552
C
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'
4bb6886d 28import { MyAccountSettingsComponent } from './my-account-settings/my-account-settings.component'
67ed6552
C
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'
4bb6886d 35import { MyAccountVideosComponent } from './my-account-videos/my-account-videos.component'
74d63469 36import { VideoChangeOwnershipComponent } from './my-account-videos/video-change-ownership/video-change-ownership.component'
67ed6552 37import { MyAccountComponent } from './my-account.component'
4bb6886d
C
38
39@NgModule({
40 imports: [
41 MyAccountRoutingModule,
67ed6552 42
74d63469 43 AutoCompleteModule,
276d9652 44 TableModule,
15e9d5ca 45 InputSwitchModule,
67ed6552
C
46 DragDropModule,
47
48 SharedMainModule,
983aa6f2 49 SharedFormModule,
67ed6552
C
50 SharedModerationModule,
51 SharedVideoMiniatureModule,
52 SharedUserSubscriptionModule,
53 SharedVideoPlaylistModule,
54 SharedUserInterfaceSettingsModule,
94148c90
C
55 SharedGlobalIconModule,
56 SharedAbuseListModule
4bb6886d
C
57 ],
58
59 declarations: [
60 MyAccountComponent,
61 MyAccountSettingsComponent,
62 MyAccountChangePasswordComponent,
ed56ad11 63 MyAccountProfileComponent,
0ba5f5ba
C
64 MyAccountChangeEmailComponent,
65
08c1efbe 66 MyAccountVideosComponent,
0ba5f5ba 67
74d63469
GR
68 VideoChangeOwnershipComponent,
69 MyAccountOwnershipComponent,
70 MyAccountAcceptOwnershipComponent,
92b9d60c 71 MyAccountVideoImportsComponent,
22a16e36 72 MyAccountDangerZoneComponent,
af5767ff
C
73 MyAccountSubscriptionsComponent,
74 MyAccountBlocklistComponent,
94148c90 75 MyAccountAbusesListComponent,
80bfd33c 76 MyAccountServerBlocklistComponent,
2f1548fd
C
77 MyAccountHistoryComponent,
78 MyAccountNotificationsComponent,
830b4faf
C
79 MyAccountNotificationPreferencesComponent,
80
81 MyAccountVideoPlaylistCreateComponent,
82 MyAccountVideoPlaylistUpdateComponent,
f0a39880 83 MyAccountVideoPlaylistsComponent,
57e56eb2 84 MyAccountVideoPlaylistElementsComponent
4bb6886d
C
85 ],
86
87 exports: [
88 MyAccountComponent
89 ],
90
91 providers: []
92})
ccfcdb67
C
93export class MyAccountModule {
94}