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