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