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