X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=client%2Fsrc%2Fapp%2Fvideos%2Fvideos.module.ts;h=5cf1e944f4b7ea79d3d198ecbc0b78d500341545;hb=28da43cf6606c052605a59662341075ba10666ee;hp=93193000c6cd8c04d0821aa9d5285aff4dd94181;hpb=9bf9d2a5c223bf006496ae7adf0c0bd7a7975108;p=github%2FChocobozzz%2FPeerTube.git diff --git a/client/src/app/videos/videos.module.ts b/client/src/app/videos/videos.module.ts index 93193000c..5cf1e944f 100644 --- a/client/src/app/videos/videos.module.ts +++ b/client/src/app/videos/videos.module.ts @@ -1,11 +1,12 @@ import { NgModule } from '@angular/core' +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: [ @@ -18,16 +19,15 @@ import { VideosComponent } from './videos.component' VideoTrendingComponent, VideoRecentlyAddedComponent, - MyVideosComponent, - VideoMiniatureComponent + VideoLocalComponent, + VideoUserSubscriptionsComponent, + VideoOverviewComponent ], exports: [ VideosComponent ], - providers: [ - VideoService - ] + providers: [] }) export class VideosModule { }