]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame_incremental - client/src/app/+my-account/my-account.module.ts
Add unicode emoji to markdown
[github/Chocobozzz/PeerTube.git] / client / src / app / +my-account / my-account.module.ts
... / ...
CommitLineData
1import { AutoCompleteModule } from 'primeng/autocomplete'
2import { InputSwitchModule } from 'primeng/inputswitch'
3import { TableModule } from 'primeng/table'
4import { DragDropModule } from '@angular/cdk/drag-drop'
5import { NgModule } from '@angular/core'
6import { SharedAbuseListModule } from '@app/shared/shared-abuse-list'
7import { SharedFormModule } from '@app/shared/shared-forms'
8import { SharedGlobalIconModule } from '@app/shared/shared-icons'
9import { SharedMainModule } from '@app/shared/shared-main'
10import { SharedModerationModule } from '@app/shared/shared-moderation'
11import { SharedShareModal } from '@app/shared/shared-share-modal'
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'
16import { MyAccountAbusesListComponent } from './my-account-abuses/my-account-abuses-list.component'
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'
23import { MyAccountRoutingModule } from './my-account-routing.module'
24import { MyAccountChangeEmailComponent } from './my-account-settings/my-account-change-email'
25import { MyAccountChangePasswordComponent } from './my-account-settings/my-account-change-password/my-account-change-password.component'
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'
29import { MyAccountSettingsComponent } from './my-account-settings/my-account-settings.component'
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'
36import { MyAccountVideosComponent } from './my-account-videos/my-account-videos.component'
37import { VideoChangeOwnershipComponent } from './my-account-videos/video-change-ownership/video-change-ownership.component'
38import { MyAccountComponent } from './my-account.component'
39
40@NgModule({
41 imports: [
42 MyAccountRoutingModule,
43
44 AutoCompleteModule,
45 TableModule,
46 InputSwitchModule,
47 DragDropModule,
48
49 SharedMainModule,
50 SharedFormModule,
51 SharedModerationModule,
52 SharedVideoMiniatureModule,
53 SharedUserSubscriptionModule,
54 SharedVideoPlaylistModule,
55 SharedUserInterfaceSettingsModule,
56 SharedGlobalIconModule,
57 SharedAbuseListModule,
58 SharedShareModal
59 ],
60
61 declarations: [
62 MyAccountComponent,
63 MyAccountSettingsComponent,
64 MyAccountChangePasswordComponent,
65 MyAccountProfileComponent,
66 MyAccountChangeEmailComponent,
67
68 MyAccountVideosComponent,
69
70 VideoChangeOwnershipComponent,
71 MyAccountOwnershipComponent,
72 MyAccountAcceptOwnershipComponent,
73 MyAccountVideoImportsComponent,
74 MyAccountDangerZoneComponent,
75 MyAccountSubscriptionsComponent,
76 MyAccountBlocklistComponent,
77 MyAccountAbusesListComponent,
78 MyAccountServerBlocklistComponent,
79 MyAccountHistoryComponent,
80 MyAccountNotificationsComponent,
81 MyAccountNotificationPreferencesComponent,
82
83 MyAccountVideoPlaylistCreateComponent,
84 MyAccountVideoPlaylistUpdateComponent,
85 MyAccountVideoPlaylistsComponent,
86 MyAccountVideoPlaylistElementsComponent
87 ],
88
89 exports: [
90 MyAccountComponent
91 ],
92
93 providers: []
94})
95export class MyAccountModule {
96}