]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - 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
1 import { TableModule } from 'primeng/table'
2 import { NgModule } from '@angular/core'
3 import { AutoCompleteModule } from 'primeng/autocomplete'
4 import { InputSwitchModule } from 'primeng/inputswitch'
5 import { SharedModule } from '../shared'
6 import { MyAccountRoutingModule } from './my-account-routing.module'
7 import { MyAccountChangePasswordComponent } from './my-account-settings/my-account-change-password/my-account-change-password.component'
8 import { MyAccountSettingsComponent } from './my-account-settings/my-account-settings.component'
9 import { MyAccountComponent } from './my-account.component'
10 import { MyAccountVideosComponent } from './my-account-videos/my-account-videos.component'
11 import { VideoChangeOwnershipComponent } from './my-account-videos/video-change-ownership/video-change-ownership.component'
12 import { MyAccountOwnershipComponent } from './my-account-ownership/my-account-ownership.component'
13 import { MyAccountAcceptOwnershipComponent } from './my-account-ownership/my-account-accept-ownership/my-account-accept-ownership.component'
14 import { MyAccountProfileComponent } from '@app/+my-account/my-account-settings/my-account-profile/my-account-profile.component'
15 import { MyAccountVideoChannelsComponent } from '@app/+my-account/my-account-video-channels/my-account-video-channels.component'
16 import { MyAccountVideoChannelCreateComponent } from '@app/+my-account/my-account-video-channels/my-account-video-channel-create.component'
17 import { MyAccountVideoChannelUpdateComponent } from '@app/+my-account/my-account-video-channels/my-account-video-channel-update.component'
18 import { MyAccountVideoImportsComponent } from '@app/+my-account/my-account-video-imports/my-account-video-imports.component'
19 import { MyAccountDangerZoneComponent } from '@app/+my-account/my-account-settings/my-account-danger-zone'
20 import { MyAccountSubscriptionsComponent } from '@app/+my-account/my-account-subscriptions/my-account-subscriptions.component'
21 import { MyAccountBlocklistComponent } from '@app/+my-account/my-account-blocklist/my-account-blocklist.component'
22 import { MyAccountServerBlocklistComponent } from '@app/+my-account/my-account-blocklist/my-account-server-blocklist.component'
23 import { MyAccountHistoryComponent } from '@app/+my-account/my-account-history/my-account-history.component'
24 import { MyAccountNotificationsComponent } from '@app/+my-account/my-account-notifications/my-account-notifications.component'
25 import { MyAccountNotificationPreferencesComponent } from '@app/+my-account/my-account-settings/my-account-notification-preferences'
26 import {
27 MyAccountVideoPlaylistCreateComponent
28 } from '@app/+my-account/my-account-video-playlists/my-account-video-playlist-create.component'
29 import {
30 MyAccountVideoPlaylistUpdateComponent
31 } from '@app/+my-account/my-account-video-playlists/my-account-video-playlist-update.component'
32 import { MyAccountVideoPlaylistsComponent } from '@app/+my-account/my-account-video-playlists/my-account-video-playlists.component'
33 import {
34 MyAccountVideoPlaylistElementsComponent
35 } from '@app/+my-account/my-account-video-playlists/my-account-video-playlist-elements.component'
36 import { DragDropModule } from '@angular/cdk/drag-drop'
37 import { MyAccountChangeEmailComponent } from '@app/+my-account/my-account-settings/my-account-change-email'
38
39 @NgModule({
40 imports: [
41 TableModule,
42 MyAccountRoutingModule,
43 AutoCompleteModule,
44 SharedModule,
45 TableModule,
46 InputSwitchModule,
47 DragDropModule
48 ],
49
50 declarations: [
51 MyAccountComponent,
52 MyAccountSettingsComponent,
53 MyAccountChangePasswordComponent,
54 MyAccountProfileComponent,
55 MyAccountChangeEmailComponent,
56
57 MyAccountVideosComponent,
58
59 VideoChangeOwnershipComponent,
60 MyAccountOwnershipComponent,
61 MyAccountAcceptOwnershipComponent,
62 MyAccountVideoChannelsComponent,
63 MyAccountVideoChannelCreateComponent,
64 MyAccountVideoChannelUpdateComponent,
65 MyAccountVideoImportsComponent,
66 MyAccountDangerZoneComponent,
67 MyAccountSubscriptionsComponent,
68 MyAccountBlocklistComponent,
69 MyAccountServerBlocklistComponent,
70 MyAccountHistoryComponent,
71 MyAccountNotificationsComponent,
72 MyAccountNotificationPreferencesComponent,
73
74 MyAccountVideoPlaylistCreateComponent,
75 MyAccountVideoPlaylistUpdateComponent,
76 MyAccountVideoPlaylistsComponent,
77 MyAccountVideoPlaylistElementsComponent
78 ],
79
80 exports: [
81 MyAccountComponent
82 ],
83
84 providers: []
85 })
86 export class MyAccountModule {
87 }