X-Git-Url: https://git.librecmc.org/?a=blobdiff_plain;f=client%2Fsrc%2Fapp%2Fvideos%2Fvideos.module.ts;h=5cf1e944f4b7ea79d3d198ecbc0b78d500341545;hb=c199c427d4ae586339822320f20f512a7a19dc3f;hp=f3981d27523429439df4ecfaf16aff9c3dad51ef;hpb=2bbb34127fccd187ed690949b6791e49fdd77194;p=oweals%2Fpeertube.git diff --git a/client/src/app/videos/videos.module.ts b/client/src/app/videos/videos.module.ts index f3981d275..5cf1e944f 100644 --- a/client/src/app/videos/videos.module.ts +++ b/client/src/app/videos/videos.module.ts @@ -1,18 +1,17 @@ import { NgModule } from '@angular/core' -import { InfiniteScrollModule } from 'ngx-infinite-scroll' +import { VideoLocalComponent } from '@app/videos/video-list/video-local.component' import { SharedModule } from '../shared' -import { VideoService } from './shared' -import { MyVideosComponent, VideoMiniatureComponent } from './video-list' import { VideoRecentlyAddedComponent } from './video-list/video-recently-added.component' import { VideoTrendingComponent } from './video-list/video-trending.component' import { VideosRoutingModule } from './videos-routing.module' import { VideosComponent } from './videos.component' +import { VideoUserSubscriptionsComponent } from '@app/videos/video-list/video-user-subscriptions.component' +import { VideoOverviewComponent } from '@app/videos/video-list/video-overview.component' @NgModule({ imports: [ VideosRoutingModule, - SharedModule, - InfiniteScrollModule + SharedModule ], declarations: [ @@ -20,16 +19,15 @@ import { VideosComponent } from './videos.component' VideoTrendingComponent, VideoRecentlyAddedComponent, - MyVideosComponent, - VideoMiniatureComponent + VideoLocalComponent, + VideoUserSubscriptionsComponent, + VideoOverviewComponent ], exports: [ VideosComponent ], - providers: [ - VideoService - ] + providers: [] }) export class VideosModule { }