Allow iframes to open links
[oweals/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 { VideoMostLikedComponent } from './video-list/video-most-liked.component'
7 import { VideosRoutingModule } from './videos-routing.module'
8 import { VideosComponent } from './videos.component'
9 import { VideoUserSubscriptionsComponent } from '@app/videos/video-list/video-user-subscriptions.component'
10 import { 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 })
35 export class VideosModule { }