]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/+my-account/my-account.module.ts
Automatically update playlist thumbnails
[github/Chocobozzz/PeerTube.git] / client / src / app / +my-account / my-account.module.ts
CommitLineData
ed31c059 1import { TableModule } from 'primeng/table'
4bb6886d 2import { NgModule } from '@angular/core'
74d63469 3import { AutoCompleteModule } from 'primeng/autocomplete'
276d9652 4import { InputSwitchModule } from 'primeng/inputswitch'
4bb6886d
C
5import { SharedModule } from '../shared'
6import { MyAccountRoutingModule } from './my-account-routing.module'
7import { MyAccountChangePasswordComponent } from './my-account-settings/my-account-change-password/my-account-change-password.component'
ed56ad11 8import { MyAccountVideoSettingsComponent } from './my-account-settings/my-account-video-settings/my-account-video-settings.component'
4bb6886d
C
9import { MyAccountSettingsComponent } from './my-account-settings/my-account-settings.component'
10import { MyAccountComponent } from './my-account.component'
11import { MyAccountVideosComponent } from './my-account-videos/my-account-videos.component'
74d63469
GR
12import { VideoChangeOwnershipComponent } from './my-account-videos/video-change-ownership/video-change-ownership.component'
13import { MyAccountOwnershipComponent } from './my-account-ownership/my-account-ownership.component'
14import { MyAccountAcceptOwnershipComponent } from './my-account-ownership/my-account-accept-ownership/my-account-accept-ownership.component'
62e62f11
C
15import { MyAccountProfileComponent } from '@app/+my-account/my-account-settings/my-account-profile/my-account-profile.component'
16import { MyAccountVideoChannelsComponent } from '@app/+my-account/my-account-video-channels/my-account-video-channels.component'
17import { MyAccountVideoChannelCreateComponent } from '@app/+my-account/my-account-video-channels/my-account-video-channel-create.component'
18import { MyAccountVideoChannelUpdateComponent } from '@app/+my-account/my-account-video-channels/my-account-video-channel-update.component'
52d9f792 19import { ActorAvatarInfoComponent } from '@app/+my-account/shared/actor-avatar-info.component'
ed31c059 20import { MyAccountVideoImportsComponent } from '@app/+my-account/my-account-video-imports/my-account-video-imports.component'
92b9d60c 21import { MyAccountDangerZoneComponent } from '@app/+my-account/my-account-settings/my-account-danger-zone'
22a16e36 22import { MyAccountSubscriptionsComponent } from '@app/+my-account/my-account-subscriptions/my-account-subscriptions.component'
af5767ff
C
23import { MyAccountBlocklistComponent } from '@app/+my-account/my-account-blocklist/my-account-blocklist.component'
24import { MyAccountServerBlocklistComponent } from '@app/+my-account/my-account-blocklist/my-account-server-blocklist.component'
80bfd33c 25import { MyAccountHistoryComponent } from '@app/+my-account/my-account-history/my-account-history.component'
2f1548fd
C
26import { MyAccountNotificationsComponent } from '@app/+my-account/my-account-notifications/my-account-notifications.component'
27import { MyAccountNotificationPreferencesComponent } from '@app/+my-account/my-account-settings/my-account-notification-preferences'
109d893f
C
28import {
29 MyAccountVideoPlaylistCreateComponent
30} from '@app/+my-account/my-account-video-playlists/my-account-video-playlist-create.component'
31import {
32 MyAccountVideoPlaylistUpdateComponent
33} from '@app/+my-account/my-account-video-playlists/my-account-video-playlist-update.component'
830b4faf 34import { MyAccountVideoPlaylistsComponent } from '@app/+my-account/my-account-video-playlists/my-account-video-playlists.component'
109d893f
C
35import {
36 MyAccountVideoPlaylistElementsComponent
37} from '@app/+my-account/my-account-video-playlists/my-account-video-playlist-elements.component'
15e9d5ca 38import { DragDropModule } from '@angular/cdk/drag-drop'
0ba5f5ba 39import { MyAccountChangeEmailComponent } from '@app/+my-account/my-account-settings/my-account-change-email'
41b15c89 40import { MultiSelectModule } from 'primeng/multiselect'
7cd4d2ba 41import { MyAccountInterfaceSettingsComponent } from '@app/+my-account/my-account-settings/my-account-interface'
4bb6886d
C
42
43@NgModule({
44 imports: [
74d63469 45 TableModule,
4bb6886d 46 MyAccountRoutingModule,
74d63469 47 AutoCompleteModule,
ed31c059 48 SharedModule,
276d9652 49 TableModule,
15e9d5ca 50 InputSwitchModule,
3caf77d3
C
51 DragDropModule,
52 MultiSelectModule
4bb6886d
C
53 ],
54
55 declarations: [
56 MyAccountComponent,
57 MyAccountSettingsComponent,
58 MyAccountChangePasswordComponent,
ed56ad11
C
59 MyAccountVideoSettingsComponent,
60 MyAccountProfileComponent,
0ba5f5ba 61 MyAccountChangeEmailComponent,
7cd4d2ba 62 MyAccountInterfaceSettingsComponent,
0ba5f5ba 63
08c1efbe 64 MyAccountVideosComponent,
0ba5f5ba 65
74d63469
GR
66 VideoChangeOwnershipComponent,
67 MyAccountOwnershipComponent,
68 MyAccountAcceptOwnershipComponent,
08c1efbe
C
69 MyAccountVideoChannelsComponent,
70 MyAccountVideoChannelCreateComponent,
52d9f792 71 MyAccountVideoChannelUpdateComponent,
ed31c059 72 ActorAvatarInfoComponent,
92b9d60c 73 MyAccountVideoImportsComponent,
22a16e36 74 MyAccountDangerZoneComponent,
af5767ff
C
75 MyAccountSubscriptionsComponent,
76 MyAccountBlocklistComponent,
80bfd33c 77 MyAccountServerBlocklistComponent,
2f1548fd
C
78 MyAccountHistoryComponent,
79 MyAccountNotificationsComponent,
830b4faf
C
80 MyAccountNotificationPreferencesComponent,
81
82 MyAccountVideoPlaylistCreateComponent,
83 MyAccountVideoPlaylistUpdateComponent,
f0a39880
C
84 MyAccountVideoPlaylistsComponent,
85 MyAccountVideoPlaylistElementsComponent
4bb6886d
C
86 ],
87
88 exports: [
89 MyAccountComponent
90 ],
91
92 providers: []
93})
ccfcdb67
C
94export class MyAccountModule {
95}