2020-11-12 15:28:54 +01:00
|
|
|
import { AutoCompleteModule } from 'primeng/autocomplete'
|
|
|
|
import { TableModule } from 'primeng/table'
|
|
|
|
import { DragDropModule } from '@angular/cdk/drag-drop'
|
|
|
|
import { NgModule } from '@angular/core'
|
|
|
|
import { SharedAbuseListModule } from '@app/shared/shared-abuse-list'
|
|
|
|
import { SharedFormModule } from '@app/shared/shared-forms'
|
|
|
|
import { SharedGlobalIconModule } from '@app/shared/shared-icons'
|
|
|
|
import { SharedMainModule } from '@app/shared/shared-main'
|
|
|
|
import { SharedModerationModule } from '@app/shared/shared-moderation'
|
|
|
|
import { SharedShareModal } from '@app/shared/shared-share-modal'
|
2021-10-27 11:54:48 +02:00
|
|
|
import { SharedTablesModule } from '@app/shared/shared-tables'
|
2020-11-12 15:28:54 +01:00
|
|
|
import { SharedUserInterfaceSettingsModule } from '@app/shared/shared-user-settings'
|
|
|
|
import { SharedUserSubscriptionModule } from '@app/shared/shared-user-subscription/shared-user-subscription.module'
|
|
|
|
import { SharedVideoLiveModule } from '@app/shared/shared-video-live'
|
|
|
|
import { SharedVideoMiniatureModule } from '@app/shared/shared-video-miniature'
|
|
|
|
import { SharedVideoPlaylistModule } from '@app/shared/shared-video-playlist/shared-video-playlist.module'
|
2021-10-19 09:44:43 +02:00
|
|
|
import { SharedActorImageModule } from '../shared/shared-actor-image/shared-actor-image.module'
|
2021-10-27 11:54:48 +02:00
|
|
|
import { MyFollowersComponent } from './my-follows/my-followers.component'
|
2021-10-19 09:44:43 +02:00
|
|
|
import { MySubscriptionsComponent } from './my-follows/my-subscriptions.component'
|
2020-11-12 15:28:54 +01:00
|
|
|
import { MyHistoryComponent } from './my-history/my-history.component'
|
|
|
|
import { MyLibraryRoutingModule } from './my-library-routing.module'
|
|
|
|
import { MyLibraryComponent } from './my-library.component'
|
|
|
|
import { MyAcceptOwnershipComponent } from './my-ownership/my-accept-ownership/my-accept-ownership.component'
|
|
|
|
import { MyOwnershipComponent } from './my-ownership/my-ownership.component'
|
|
|
|
import { MyVideoImportsComponent } from './my-video-imports/my-video-imports.component'
|
|
|
|
import { MyVideoPlaylistCreateComponent } from './my-video-playlists/my-video-playlist-create.component'
|
|
|
|
import { MyVideoPlaylistElementsComponent } from './my-video-playlists/my-video-playlist-elements.component'
|
|
|
|
import { MyVideoPlaylistUpdateComponent } from './my-video-playlists/my-video-playlist-update.component'
|
|
|
|
import { MyVideoPlaylistsComponent } from './my-video-playlists/my-video-playlists.component'
|
|
|
|
import { VideoChangeOwnershipComponent } from './my-videos/modals/video-change-ownership.component'
|
|
|
|
import { MyVideosComponent } from './my-videos/my-videos.component'
|
2022-08-10 09:53:39 +02:00
|
|
|
import { MyVideoChannelSyncsComponent } from './my-video-channel-syncs/my-video-channel-syncs.component'
|
|
|
|
import { VideoChannelSyncEditComponent } from './my-video-channel-syncs/video-channel-sync-edit/video-channel-sync-edit.component'
|
2020-11-12 15:28:54 +01:00
|
|
|
|
|
|
|
@NgModule({
|
|
|
|
imports: [
|
|
|
|
MyLibraryRoutingModule,
|
|
|
|
|
|
|
|
AutoCompleteModule,
|
|
|
|
TableModule,
|
|
|
|
DragDropModule,
|
|
|
|
|
|
|
|
SharedMainModule,
|
|
|
|
SharedFormModule,
|
|
|
|
SharedModerationModule,
|
|
|
|
SharedVideoMiniatureModule,
|
|
|
|
SharedUserSubscriptionModule,
|
|
|
|
SharedVideoPlaylistModule,
|
|
|
|
SharedUserInterfaceSettingsModule,
|
|
|
|
SharedGlobalIconModule,
|
|
|
|
SharedAbuseListModule,
|
|
|
|
SharedShareModal,
|
2021-04-15 10:01:27 +02:00
|
|
|
SharedVideoLiveModule,
|
2021-10-27 11:54:48 +02:00
|
|
|
SharedActorImageModule,
|
|
|
|
SharedTablesModule
|
2020-11-12 15:28:54 +01:00
|
|
|
],
|
|
|
|
|
|
|
|
declarations: [
|
|
|
|
MyLibraryComponent,
|
|
|
|
|
|
|
|
MyVideosComponent,
|
|
|
|
|
|
|
|
VideoChangeOwnershipComponent,
|
|
|
|
|
|
|
|
MyOwnershipComponent,
|
|
|
|
MyAcceptOwnershipComponent,
|
|
|
|
MyVideoImportsComponent,
|
2022-08-10 09:53:39 +02:00
|
|
|
MyVideoChannelSyncsComponent,
|
|
|
|
VideoChannelSyncEditComponent,
|
2020-11-12 15:28:54 +01:00
|
|
|
MySubscriptionsComponent,
|
2021-10-19 09:44:43 +02:00
|
|
|
MyFollowersComponent,
|
2020-11-12 15:28:54 +01:00
|
|
|
MyHistoryComponent,
|
|
|
|
|
|
|
|
MyVideoPlaylistCreateComponent,
|
|
|
|
MyVideoPlaylistUpdateComponent,
|
|
|
|
MyVideoPlaylistsComponent,
|
|
|
|
MyVideoPlaylistElementsComponent
|
|
|
|
],
|
|
|
|
|
|
|
|
exports: [
|
|
|
|
MyLibraryComponent
|
|
|
|
],
|
|
|
|
|
|
|
|
providers: []
|
|
|
|
})
|
|
|
|
export class MyLibraryModule {
|
|
|
|
}
|