]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - client/src/app/+my-account/my-account.module.ts
Fix lint
[github/Chocobozzz/PeerTube.git] / client / src / app / +my-account / my-account.module.ts
1 import { TableModule } from 'primeng/table'
2 import { NgModule } from '@angular/core'
3 import { AutoCompleteModule } from 'primeng/autocomplete'
4 import { InputSwitchModule } from 'primeng/inputswitch'
5 import { SharedModule } from '../shared'
6 import { MyAccountRoutingModule } from './my-account-routing.module'
7 import { MyAccountChangePasswordComponent } from './my-account-settings/my-account-change-password/my-account-change-password.component'
8 import { MyAccountVideoSettingsComponent } from './my-account-settings/my-account-video-settings/my-account-video-settings.component'
9 import { MyAccountSettingsComponent } from './my-account-settings/my-account-settings.component'
10 import { MyAccountComponent } from './my-account.component'
11 import { MyAccountVideosComponent } from './my-account-videos/my-account-videos.component'
12 import { VideoChangeOwnershipComponent } from './my-account-videos/video-change-ownership/video-change-ownership.component'
13 import { MyAccountOwnershipComponent } from './my-account-ownership/my-account-ownership.component'
14 import { MyAccountAcceptOwnershipComponent } from './my-account-ownership/my-account-accept-ownership/my-account-accept-ownership.component'
15 import { MyAccountProfileComponent } from '@app/+my-account/my-account-settings/my-account-profile/my-account-profile.component'
16 import { MyAccountVideoChannelsComponent } from '@app/+my-account/my-account-video-channels/my-account-video-channels.component'
17 import { MyAccountVideoChannelCreateComponent } from '@app/+my-account/my-account-video-channels/my-account-video-channel-create.component'
18 import { MyAccountVideoChannelUpdateComponent } from '@app/+my-account/my-account-video-channels/my-account-video-channel-update.component'
19 import { ActorAvatarInfoComponent } from '@app/+my-account/shared/actor-avatar-info.component'
20 import { MyAccountVideoImportsComponent } from '@app/+my-account/my-account-video-imports/my-account-video-imports.component'
21 import { MyAccountDangerZoneComponent } from '@app/+my-account/my-account-settings/my-account-danger-zone'
22 import { MyAccountSubscriptionsComponent } from '@app/+my-account/my-account-subscriptions/my-account-subscriptions.component'
23 import { MyAccountBlocklistComponent } from '@app/+my-account/my-account-blocklist/my-account-blocklist.component'
24 import { MyAccountServerBlocklistComponent } from '@app/+my-account/my-account-blocklist/my-account-server-blocklist.component'
25 import { MyAccountHistoryComponent } from '@app/+my-account/my-account-history/my-account-history.component'
26 import { MyAccountNotificationsComponent } from '@app/+my-account/my-account-notifications/my-account-notifications.component'
27 import { MyAccountNotificationPreferencesComponent } from '@app/+my-account/my-account-settings/my-account-notification-preferences'
28 import {
29 MyAccountVideoPlaylistCreateComponent
30 } from '@app/+my-account/my-account-video-playlists/my-account-video-playlist-create.component'
31 import {
32 MyAccountVideoPlaylistUpdateComponent
33 } from '@app/+my-account/my-account-video-playlists/my-account-video-playlist-update.component'
34 import { MyAccountVideoPlaylistsComponent } from '@app/+my-account/my-account-video-playlists/my-account-video-playlists.component'
35 import {
36 MyAccountVideoPlaylistElementsComponent
37 } from '@app/+my-account/my-account-video-playlists/my-account-video-playlist-elements.component'
38 import { DragDropModule } from '@angular/cdk/drag-drop'
39 import { MyAccountChangeEmailComponent } from '@app/+my-account/my-account-settings/my-account-change-email'
40 import { MultiSelectModule } from 'primeng/primeng'
41 import { MyAccountInterfaceSettingsComponent } from '@app/+my-account/my-account-settings/my-account-interface'
42
43 @NgModule({
44 imports: [
45 TableModule,
46 MyAccountRoutingModule,
47 AutoCompleteModule,
48 SharedModule,
49 TableModule,
50 InputSwitchModule,
51 DragDropModule,
52 MultiSelectModule
53 ],
54
55 declarations: [
56 MyAccountComponent,
57 MyAccountSettingsComponent,
58 MyAccountChangePasswordComponent,
59 MyAccountVideoSettingsComponent,
60 MyAccountProfileComponent,
61 MyAccountChangeEmailComponent,
62 MyAccountInterfaceSettingsComponent,
63
64 MyAccountVideosComponent,
65
66 VideoChangeOwnershipComponent,
67 MyAccountOwnershipComponent,
68 MyAccountAcceptOwnershipComponent,
69 MyAccountVideoChannelsComponent,
70 MyAccountVideoChannelCreateComponent,
71 MyAccountVideoChannelUpdateComponent,
72 ActorAvatarInfoComponent,
73 MyAccountVideoImportsComponent,
74 MyAccountDangerZoneComponent,
75 MyAccountSubscriptionsComponent,
76 MyAccountBlocklistComponent,
77 MyAccountServerBlocklistComponent,
78 MyAccountHistoryComponent,
79 MyAccountNotificationsComponent,
80 MyAccountNotificationPreferencesComponent,
81
82 MyAccountVideoPlaylistCreateComponent,
83 MyAccountVideoPlaylistUpdateComponent,
84 MyAccountVideoPlaylistsComponent,
85 MyAccountVideoPlaylistElementsComponent
86 ],
87
88 exports: [
89 MyAccountComponent
90 ],
91
92 providers: []
93 })
94 export class MyAccountModule {
95 }