]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame_incremental - client/src/app/+my-account/my-account.module.ts
Add abuse message management in admin
[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 { SharedFormModule } from '@app/shared/shared-forms'
7import { SharedGlobalIconModule } from '@app/shared/shared-icons'
8import { SharedMainModule } from '@app/shared/shared-main'
9import { SharedModerationModule } from '@app/shared/shared-moderation'
10import { SharedUserInterfaceSettingsModule } from '@app/shared/shared-user-settings'
11import { SharedUserSubscriptionModule } from '@app/shared/shared-user-subscription/shared-user-subscription.module'
12import { SharedVideoMiniatureModule } from '@app/shared/shared-video-miniature'
13import { SharedVideoPlaylistModule } from '@app/shared/shared-video-playlist/shared-video-playlist.module'
14import { MyAccountBlocklistComponent } from './my-account-blocklist/my-account-blocklist.component'
15import { MyAccountServerBlocklistComponent } from './my-account-blocklist/my-account-server-blocklist.component'
16import { MyAccountHistoryComponent } from './my-account-history/my-account-history.component'
17import { MyAccountNotificationsComponent } from './my-account-notifications/my-account-notifications.component'
18import { MyAccountAcceptOwnershipComponent } from './my-account-ownership/my-account-accept-ownership/my-account-accept-ownership.component'
19import { MyAccountOwnershipComponent } from './my-account-ownership/my-account-ownership.component'
20import { MyAccountRoutingModule } from './my-account-routing.module'
21import { MyAccountChangeEmailComponent } from './my-account-settings/my-account-change-email'
22import { MyAccountChangePasswordComponent } from './my-account-settings/my-account-change-password/my-account-change-password.component'
23import { MyAccountDangerZoneComponent } from './my-account-settings/my-account-danger-zone'
24import { MyAccountNotificationPreferencesComponent } from './my-account-settings/my-account-notification-preferences'
25import { MyAccountProfileComponent } from './my-account-settings/my-account-profile/my-account-profile.component'
26import { MyAccountSettingsComponent } from './my-account-settings/my-account-settings.component'
27import { MyAccountSubscriptionsComponent } from './my-account-subscriptions/my-account-subscriptions.component'
28import { MyAccountVideoImportsComponent } from './my-account-video-imports/my-account-video-imports.component'
29import { MyAccountVideoPlaylistCreateComponent } from './my-account-video-playlists/my-account-video-playlist-create.component'
30import { MyAccountVideoPlaylistElementsComponent } from './my-account-video-playlists/my-account-video-playlist-elements.component'
31import { MyAccountVideoPlaylistUpdateComponent } from './my-account-video-playlists/my-account-video-playlist-update.component'
32import { MyAccountVideoPlaylistsComponent } from './my-account-video-playlists/my-account-video-playlists.component'
33import { MyAccountVideosComponent } from './my-account-videos/my-account-videos.component'
34import { VideoChangeOwnershipComponent } from './my-account-videos/video-change-ownership/video-change-ownership.component'
35import { MyAccountComponent } from './my-account.component'
36
37@NgModule({
38 imports: [
39 MyAccountRoutingModule,
40
41 AutoCompleteModule,
42 TableModule,
43 InputSwitchModule,
44 DragDropModule,
45
46 SharedMainModule,
47 SharedFormModule,
48 SharedModerationModule,
49 SharedVideoMiniatureModule,
50 SharedUserSubscriptionModule,
51 SharedVideoPlaylistModule,
52 SharedUserInterfaceSettingsModule,
53 SharedGlobalIconModule
54 ],
55
56 declarations: [
57 MyAccountComponent,
58 MyAccountSettingsComponent,
59 MyAccountChangePasswordComponent,
60 MyAccountProfileComponent,
61 MyAccountChangeEmailComponent,
62
63 MyAccountVideosComponent,
64
65 VideoChangeOwnershipComponent,
66 MyAccountOwnershipComponent,
67 MyAccountAcceptOwnershipComponent,
68 MyAccountVideoImportsComponent,
69 MyAccountDangerZoneComponent,
70 MyAccountSubscriptionsComponent,
71 MyAccountBlocklistComponent,
72 MyAccountServerBlocklistComponent,
73 MyAccountHistoryComponent,
74 MyAccountNotificationsComponent,
75 MyAccountNotificationPreferencesComponent,
76
77 MyAccountVideoPlaylistCreateComponent,
78 MyAccountVideoPlaylistUpdateComponent,
79 MyAccountVideoPlaylistsComponent,
80 MyAccountVideoPlaylistElementsComponent
81 ],
82
83 exports: [
84 MyAccountComponent
85 ],
86
87 providers: []
88})
89export class MyAccountModule {
90}