]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/+my-account/my-account.module.ts
fix CONTRIBUTING.md command order (#3305)
[github/Chocobozzz/PeerTube.git] / client / src / app / +my-account / my-account.module.ts
CommitLineData
74d63469 1import { AutoCompleteModule } from 'primeng/autocomplete'
276d9652 2import { InputSwitchModule } from 'primeng/inputswitch'
67ed6552
C
3import { TableModule } from 'primeng/table'
4import { DragDropModule } from '@angular/cdk/drag-drop'
5import { NgModule } from '@angular/core'
94148c90 6import { SharedAbuseListModule } from '@app/shared/shared-abuse-list'
983aa6f2 7import { SharedFormModule } from '@app/shared/shared-forms'
67ed6552 8import { SharedGlobalIconModule } from '@app/shared/shared-icons'
f8c00564 9import { SharedVideoLiveModule } from '@app/shared/shared-video-live'
67ed6552
C
10import { SharedMainModule } from '@app/shared/shared-main'
11import { SharedModerationModule } from '@app/shared/shared-moderation'
82f443de 12import { SharedShareModal } from '@app/shared/shared-share-modal'
67ed6552
C
13import { SharedUserInterfaceSettingsModule } from '@app/shared/shared-user-settings'
14import { SharedUserSubscriptionModule } from '@app/shared/shared-user-subscription/shared-user-subscription.module'
15import { SharedVideoMiniatureModule } from '@app/shared/shared-video-miniature'
16import { SharedVideoPlaylistModule } from '@app/shared/shared-video-playlist/shared-video-playlist.module'
94148c90 17import { MyAccountAbusesListComponent } from './my-account-abuses/my-account-abuses-list.component'
67ed6552
C
18import { MyAccountBlocklistComponent } from './my-account-blocklist/my-account-blocklist.component'
19import { MyAccountServerBlocklistComponent } from './my-account-blocklist/my-account-server-blocklist.component'
20import { MyAccountHistoryComponent } from './my-account-history/my-account-history.component'
21import { MyAccountNotificationsComponent } from './my-account-notifications/my-account-notifications.component'
22import { MyAccountAcceptOwnershipComponent } from './my-account-ownership/my-account-accept-ownership/my-account-accept-ownership.component'
23import { MyAccountOwnershipComponent } from './my-account-ownership/my-account-ownership.component'
4bb6886d 24import { MyAccountRoutingModule } from './my-account-routing.module'
67ed6552 25import { MyAccountChangeEmailComponent } from './my-account-settings/my-account-change-email'
4bb6886d 26import { MyAccountChangePasswordComponent } from './my-account-settings/my-account-change-password/my-account-change-password.component'
67ed6552
C
27import { MyAccountDangerZoneComponent } from './my-account-settings/my-account-danger-zone'
28import { MyAccountNotificationPreferencesComponent } from './my-account-settings/my-account-notification-preferences'
29import { MyAccountProfileComponent } from './my-account-settings/my-account-profile/my-account-profile.component'
4bb6886d 30import { MyAccountSettingsComponent } from './my-account-settings/my-account-settings.component'
67ed6552
C
31import { MyAccountSubscriptionsComponent } from './my-account-subscriptions/my-account-subscriptions.component'
32import { MyAccountVideoImportsComponent } from './my-account-video-imports/my-account-video-imports.component'
33import { MyAccountVideoPlaylistCreateComponent } from './my-account-video-playlists/my-account-video-playlist-create.component'
34import { MyAccountVideoPlaylistElementsComponent } from './my-account-video-playlists/my-account-video-playlist-elements.component'
35import { MyAccountVideoPlaylistUpdateComponent } from './my-account-video-playlists/my-account-video-playlist-update.component'
36import { MyAccountVideoPlaylistsComponent } from './my-account-video-playlists/my-account-video-playlists.component'
d846d99c 37import { VideoChangeOwnershipComponent } from './my-account-videos/modals/video-change-ownership.component'
f8c00564 38import { MyAccountVideosComponent } from './my-account-videos/my-account-videos.component'
67ed6552 39import { MyAccountComponent } from './my-account.component'
4bb6886d
C
40
41@NgModule({
42 imports: [
43 MyAccountRoutingModule,
67ed6552 44
74d63469 45 AutoCompleteModule,
276d9652 46 TableModule,
15e9d5ca 47 InputSwitchModule,
67ed6552
C
48 DragDropModule,
49
50 SharedMainModule,
983aa6f2 51 SharedFormModule,
67ed6552
C
52 SharedModerationModule,
53 SharedVideoMiniatureModule,
54 SharedUserSubscriptionModule,
55 SharedVideoPlaylistModule,
56 SharedUserInterfaceSettingsModule,
94148c90 57 SharedGlobalIconModule,
82f443de 58 SharedAbuseListModule,
f8c00564
C
59 SharedShareModal,
60 SharedVideoLiveModule
4bb6886d
C
61 ],
62
63 declarations: [
64 MyAccountComponent,
65 MyAccountSettingsComponent,
66 MyAccountChangePasswordComponent,
ed56ad11 67 MyAccountProfileComponent,
0ba5f5ba
C
68 MyAccountChangeEmailComponent,
69
08c1efbe 70 MyAccountVideosComponent,
0ba5f5ba 71
74d63469 72 VideoChangeOwnershipComponent,
d846d99c 73
74d63469
GR
74 MyAccountOwnershipComponent,
75 MyAccountAcceptOwnershipComponent,
92b9d60c 76 MyAccountVideoImportsComponent,
22a16e36 77 MyAccountDangerZoneComponent,
af5767ff
C
78 MyAccountSubscriptionsComponent,
79 MyAccountBlocklistComponent,
94148c90 80 MyAccountAbusesListComponent,
80bfd33c 81 MyAccountServerBlocklistComponent,
2f1548fd
C
82 MyAccountHistoryComponent,
83 MyAccountNotificationsComponent,
830b4faf
C
84 MyAccountNotificationPreferencesComponent,
85
86 MyAccountVideoPlaylistCreateComponent,
87 MyAccountVideoPlaylistUpdateComponent,
f0a39880 88 MyAccountVideoPlaylistsComponent,
57e56eb2 89 MyAccountVideoPlaylistElementsComponent
4bb6886d
C
90 ],
91
92 exports: [
93 MyAccountComponent
94 ],
95
96 providers: []
97})
ccfcdb67
C
98export class MyAccountModule {
99}