X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=client%2Fsrc%2Fapp%2F%2Bmy-account%2Fmy-account.module.ts;h=6cf1499d336583373624dc3afe41822d418961a0;hb=da69b88638914755900b26bf55482c9d6846e42c;hp=18f51f171391c4d7ba6e5219ff89b2ac363f6df7;hpb=88108880bbdba473cfe36ecbebc1c3c4f972e102;p=github%2FChocobozzz%2FPeerTube.git diff --git a/client/src/app/+my-account/my-account.module.ts b/client/src/app/+my-account/my-account.module.ts index 18f51f171..6cf1499d3 100644 --- a/client/src/app/+my-account/my-account.module.ts +++ b/client/src/app/+my-account/my-account.module.ts @@ -25,6 +25,19 @@ import { MyAccountServerBlocklistComponent } from '@app/+my-account/my-account-b import { MyAccountHistoryComponent } from '@app/+my-account/my-account-history/my-account-history.component' import { MyAccountNotificationsComponent } from '@app/+my-account/my-account-notifications/my-account-notifications.component' import { MyAccountNotificationPreferencesComponent } from '@app/+my-account/my-account-settings/my-account-notification-preferences' +import { + MyAccountVideoPlaylistCreateComponent +} from '@app/+my-account/my-account-video-playlists/my-account-video-playlist-create.component' +import { + MyAccountVideoPlaylistUpdateComponent +} from '@app/+my-account/my-account-video-playlists/my-account-video-playlist-update.component' +import { MyAccountVideoPlaylistsComponent } from '@app/+my-account/my-account-video-playlists/my-account-video-playlists.component' +import { + MyAccountVideoPlaylistElementsComponent +} from '@app/+my-account/my-account-video-playlists/my-account-video-playlist-elements.component' +import { DragDropModule } from '@angular/cdk/drag-drop' +import { MyAccountChangeEmailComponent } from '@app/+my-account/my-account-settings/my-account-change-email' +import { MyAccountInterfaceSettingsComponent } from '@app/+my-account/my-account-settings/my-account-interface' @NgModule({ imports: [ @@ -33,7 +46,8 @@ import { MyAccountNotificationPreferencesComponent } from '@app/+my-account/my-a AutoCompleteModule, SharedModule, TableModule, - InputSwitchModule + InputSwitchModule, + DragDropModule ], declarations: [ @@ -42,7 +56,11 @@ import { MyAccountNotificationPreferencesComponent } from '@app/+my-account/my-a MyAccountChangePasswordComponent, MyAccountVideoSettingsComponent, MyAccountProfileComponent, + MyAccountChangeEmailComponent, + MyAccountInterfaceSettingsComponent, + MyAccountVideosComponent, + VideoChangeOwnershipComponent, MyAccountOwnershipComponent, MyAccountAcceptOwnershipComponent, @@ -57,7 +75,12 @@ import { MyAccountNotificationPreferencesComponent } from '@app/+my-account/my-a MyAccountServerBlocklistComponent, MyAccountHistoryComponent, MyAccountNotificationsComponent, - MyAccountNotificationPreferencesComponent + MyAccountNotificationPreferencesComponent, + + MyAccountVideoPlaylistCreateComponent, + MyAccountVideoPlaylistUpdateComponent, + MyAccountVideoPlaylistsComponent, + MyAccountVideoPlaylistElementsComponent ], exports: [ @@ -66,4 +89,5 @@ import { MyAccountNotificationPreferencesComponent } from '@app/+my-account/my-a providers: [] }) -export class MyAccountModule { } +export class MyAccountModule { +}