]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame_incremental - 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
1import { NgModule } from '@angular/core'
2import { TableModule } from 'primeng/table'
3import { AutoCompleteModule } from 'primeng/autocomplete'
4import { InputSwitchModule } from 'primeng/inputswitch'
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'
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'
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'
14import { MyAccountProfileComponent } from '@app/+my-account/my-account-settings/my-account-profile/my-account-profile.component'
15import { MyAccountVideoImportsComponent } from '@app/+my-account/my-account-video-imports/my-account-video-imports.component'
16import { MyAccountDangerZoneComponent } from '@app/+my-account/my-account-settings/my-account-danger-zone'
17import { MyAccountSubscriptionsComponent } from '@app/+my-account/my-account-subscriptions/my-account-subscriptions.component'
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'
20import { MyAccountHistoryComponent } from '@app/+my-account/my-account-history/my-account-history.component'
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'
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'
29import { MyAccountVideoPlaylistsComponent } from '@app/+my-account/my-account-video-playlists/my-account-video-playlists.component'
30import {
31 MyAccountVideoPlaylistElementsComponent
32} from '@app/+my-account/my-account-video-playlists/my-account-video-playlist-elements.component'
33import { DragDropModule } from '@angular/cdk/drag-drop'
34import { MyAccountChangeEmailComponent } from '@app/+my-account/my-account-settings/my-account-change-email'
35
36@NgModule({
37 imports: [
38 TableModule,
39 MyAccountRoutingModule,
40 AutoCompleteModule,
41 SharedModule,
42 TableModule,
43 InputSwitchModule,
44 DragDropModule
45 ],
46
47 declarations: [
48 MyAccountComponent,
49 MyAccountSettingsComponent,
50 MyAccountChangePasswordComponent,
51 MyAccountProfileComponent,
52 MyAccountChangeEmailComponent,
53
54 MyAccountVideosComponent,
55
56 VideoChangeOwnershipComponent,
57 MyAccountOwnershipComponent,
58 MyAccountAcceptOwnershipComponent,
59 MyAccountVideoImportsComponent,
60 MyAccountDangerZoneComponent,
61 MyAccountSubscriptionsComponent,
62 MyAccountBlocklistComponent,
63 MyAccountServerBlocklistComponent,
64 MyAccountHistoryComponent,
65 MyAccountNotificationsComponent,
66 MyAccountNotificationPreferencesComponent,
67
68 MyAccountVideoPlaylistCreateComponent,
69 MyAccountVideoPlaylistUpdateComponent,
70 MyAccountVideoPlaylistsComponent,
71 MyAccountVideoPlaylistElementsComponent
72 ],
73
74 exports: [
75 MyAccountComponent
76 ],
77
78 providers: []
79})
80export class MyAccountModule {
81}