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