X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=client%2Fsrc%2Fapp%2Fvideos%2Fvideos.module.ts;h=7c3d457b3aa9d440a870a41efe08e225f623c866;hb=9c2e0dbfa9098675390e00ccb0fa49c51b3c6732;hp=1d61941581042e68dd968ef0402c6fb754158f71;hpb=c30745f342480b59fb0856a059c8c2fbffbcfc6a;p=github%2FChocobozzz%2FPeerTube.git diff --git a/client/src/app/videos/videos.module.ts b/client/src/app/videos/videos.module.ts index 1d6194158..7c3d457b3 100644 --- a/client/src/app/videos/videos.module.ts +++ b/client/src/app/videos/videos.module.ts @@ -1,8 +1,7 @@ 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 { VideoMiniatureComponent } from './video-list' +import { VideoSearchComponent } 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' @@ -11,8 +10,7 @@ import { VideosComponent } from './videos.component' @NgModule({ imports: [ VideosRoutingModule, - SharedModule, - InfiniteScrollModule + SharedModule ], declarations: [ @@ -20,15 +18,14 @@ import { VideosComponent } from './videos.component' VideoTrendingComponent, VideoRecentlyAddedComponent, - VideoMiniatureComponent + VideoLocalComponent, + VideoSearchComponent ], exports: [ VideosComponent ], - providers: [ - VideoService - ] + providers: [] }) export class VideosModule { }