]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame_incremental - client/src/app/videos/videos.module.ts
autoplay next video support for playlists
[github/Chocobozzz/PeerTube.git] / client / src / app / videos / videos.module.ts
... / ...
CommitLineData
1import { NgModule } from '@angular/core'
2import { VideoLocalComponent } from '@app/videos/video-list/video-local.component'
3import { SharedModule } from '../shared'
4import { VideoRecentlyAddedComponent } from './video-list/video-recently-added.component'
5import { VideoTrendingComponent } from './video-list/video-trending.component'
6import { VideoMostLikedComponent } from './video-list/video-most-liked.component'
7import { VideosRoutingModule } from './videos-routing.module'
8import { VideosComponent } from './videos.component'
9import { VideoUserSubscriptionsComponent } from '@app/videos/video-list/video-user-subscriptions.component'
10import { VideoOverviewComponent } from '@app/videos/video-list/video-overview.component'
11
12@NgModule({
13 imports: [
14 VideosRoutingModule,
15 SharedModule
16 ],
17
18 declarations: [
19 VideosComponent,
20
21 VideoTrendingComponent,
22 VideoMostLikedComponent,
23 VideoRecentlyAddedComponent,
24 VideoLocalComponent,
25 VideoUserSubscriptionsComponent,
26 VideoOverviewComponent
27 ],
28
29 exports: [
30 VideosComponent
31 ],
32
33 providers: []
34})
35export class VideosModule { }