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