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