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