]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/+my-account/my-account.module.ts
provide specific engine boundaries for nodejs and yarn
[github/Chocobozzz/PeerTube.git] / client / src / app / +my-account / my-account.module.ts
CommitLineData
4bb6886d 1import { NgModule } from '@angular/core'
8165d00a 2import { TableModule } from 'primeng/table'
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 14import { MyAccountProfileComponent } from '@app/+my-account/my-account-settings/my-account-profile/my-account-profile.component'
ed31c059 15import { MyAccountVideoImportsComponent } from '@app/+my-account/my-account-video-imports/my-account-video-imports.component'
92b9d60c 16import { MyAccountDangerZoneComponent } from '@app/+my-account/my-account-settings/my-account-danger-zone'
22a16e36 17import { MyAccountSubscriptionsComponent } from '@app/+my-account/my-account-subscriptions/my-account-subscriptions.component'
af5767ff
C
18import { MyAccountBlocklistComponent } from '@app/+my-account/my-account-blocklist/my-account-blocklist.component'
19import { MyAccountServerBlocklistComponent } from '@app/+my-account/my-account-blocklist/my-account-server-blocklist.component'
80bfd33c 20import { MyAccountHistoryComponent } from '@app/+my-account/my-account-history/my-account-history.component'
2f1548fd
C
21import { MyAccountNotificationsComponent } from '@app/+my-account/my-account-notifications/my-account-notifications.component'
22import { MyAccountNotificationPreferencesComponent } from '@app/+my-account/my-account-settings/my-account-notification-preferences'
109d893f
C
23import {
24 MyAccountVideoPlaylistCreateComponent
25} from '@app/+my-account/my-account-video-playlists/my-account-video-playlist-create.component'
26import {
27 MyAccountVideoPlaylistUpdateComponent
28} from '@app/+my-account/my-account-video-playlists/my-account-video-playlist-update.component'
830b4faf 29import { MyAccountVideoPlaylistsComponent } from '@app/+my-account/my-account-video-playlists/my-account-video-playlists.component'
109d893f
C
30import {
31 MyAccountVideoPlaylistElementsComponent
32} from '@app/+my-account/my-account-video-playlists/my-account-video-playlist-elements.component'
15e9d5ca 33import { DragDropModule } from '@angular/cdk/drag-drop'
0ba5f5ba 34import { MyAccountChangeEmailComponent } from '@app/+my-account/my-account-settings/my-account-change-email'
4bb6886d
C
35
36@NgModule({
37 imports: [
74d63469 38 TableModule,
4bb6886d 39 MyAccountRoutingModule,
74d63469 40 AutoCompleteModule,
ed31c059 41 SharedModule,
276d9652 42 TableModule,
15e9d5ca 43 InputSwitchModule,
6541071b 44 DragDropModule
4bb6886d
C
45 ],
46
47 declarations: [
48 MyAccountComponent,
49 MyAccountSettingsComponent,
50 MyAccountChangePasswordComponent,
ed56ad11 51 MyAccountProfileComponent,
0ba5f5ba
C
52 MyAccountChangeEmailComponent,
53
08c1efbe 54 MyAccountVideosComponent,
0ba5f5ba 55
74d63469
GR
56 VideoChangeOwnershipComponent,
57 MyAccountOwnershipComponent,
58 MyAccountAcceptOwnershipComponent,
92b9d60c 59 MyAccountVideoImportsComponent,
22a16e36 60 MyAccountDangerZoneComponent,
af5767ff
C
61 MyAccountSubscriptionsComponent,
62 MyAccountBlocklistComponent,
80bfd33c 63 MyAccountServerBlocklistComponent,
2f1548fd
C
64 MyAccountHistoryComponent,
65 MyAccountNotificationsComponent,
830b4faf
C
66 MyAccountNotificationPreferencesComponent,
67
68 MyAccountVideoPlaylistCreateComponent,
69 MyAccountVideoPlaylistUpdateComponent,
f0a39880
C
70 MyAccountVideoPlaylistsComponent,
71 MyAccountVideoPlaylistElementsComponent
4bb6886d
C
72 ],
73
74 exports: [
75 MyAccountComponent
76 ],
77
78 providers: []
79})
ccfcdb67
C
80export class MyAccountModule {
81}