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