]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - client/src/app/+videos/videos.module.ts
Fix privacy concern for remote videos
[github/Chocobozzz/PeerTube.git] / client / src / app / +videos / videos.module.ts
1 import { NgModule } from '@angular/core'
2 import { SharedActorImageModule } from '@app/shared/shared-actor-image/shared-actor-image.module'
3 import { SharedFormModule } from '@app/shared/shared-forms'
4 import { SharedGlobalIconModule } from '@app/shared/shared-icons'
5 import { SharedMainModule } from '@app/shared/shared-main'
6 import { SharedUserSubscriptionModule } from '@app/shared/shared-user-subscription'
7 import { SharedVideoMiniatureModule } from '@app/shared/shared-video-miniature'
8 import { OverviewService, VideosListCommonPageComponent } from './video-list'
9 import { VideoOverviewComponent } from './video-list/overview/video-overview.component'
10 import { VideoUserSubscriptionsComponent } from './video-list/video-user-subscriptions.component'
11 import { VideosRoutingModule } from './videos-routing.module'
12 import { VideosComponent } from './videos.component'
13
14 @NgModule({
15 imports: [
16 VideosRoutingModule,
17
18 SharedMainModule,
19 SharedFormModule,
20 SharedVideoMiniatureModule,
21 SharedUserSubscriptionModule,
22 SharedGlobalIconModule,
23 SharedActorImageModule
24 ],
25
26 declarations: [
27 VideosComponent,
28
29 VideoUserSubscriptionsComponent,
30 VideoOverviewComponent,
31 VideosListCommonPageComponent
32 ],
33
34 exports: [
35 VideosComponent
36 ],
37
38 providers: [
39 OverviewService
40 ]
41 })
42 export class VideosModule { }