X-Git-Url: https://git.librecmc.org/?a=blobdiff_plain;f=client%2Fsrc%2Fapp%2Fvideos%2Fvideos.module.ts;h=5cf1e944f4b7ea79d3d198ecbc0b78d500341545;hb=c199c427d4ae586339822320f20f512a7a19dc3f;hp=3a0c3feac122241f4387a152bf91db7e8aaee59d;hpb=a685e25ca05f08ad1b3f7fbaccc8744727bd8d27;p=oweals%2Fpeertube.git diff --git a/client/src/app/videos/videos.module.ts b/client/src/app/videos/videos.module.ts index 3a0c3feac..5cf1e944f 100644 --- a/client/src/app/videos/videos.module.ts +++ b/client/src/app/videos/videos.module.ts @@ -1,10 +1,12 @@ import { NgModule } from '@angular/core' - +import { VideoLocalComponent } from '@app/videos/video-list/video-local.component' +import { SharedModule } from '../shared' +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 { LoaderComponent, VideoListComponent, VideoMiniatureComponent, VideoSortComponent } from './video-list' -import { VideoService } from './shared' -import { SharedModule } from '../shared' +import { VideoUserSubscriptionsComponent } from '@app/videos/video-list/video-user-subscriptions.component' +import { VideoOverviewComponent } from '@app/videos/video-list/video-overview.component' @NgModule({ imports: [ @@ -15,19 +17,17 @@ import { SharedModule } from '../shared' declarations: [ VideosComponent, - VideoListComponent, - VideoMiniatureComponent, - VideoSortComponent, - - LoaderComponent + VideoTrendingComponent, + VideoRecentlyAddedComponent, + VideoLocalComponent, + VideoUserSubscriptionsComponent, + VideoOverviewComponent ], exports: [ VideosComponent ], - providers: [ - VideoService - ] + providers: [] }) export class VideosModule { }