]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - client/src/app/+videos/videos.module.ts
Add sync link to import page
[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
13 @NgModule({
14 imports: [
15 VideosRoutingModule,
16
17 SharedMainModule,
18 SharedFormModule,
19 SharedVideoMiniatureModule,
20 SharedUserSubscriptionModule,
21 SharedGlobalIconModule,
22 SharedActorImageModule
23 ],
24
25 declarations: [
26 VideoUserSubscriptionsComponent,
27 VideoOverviewComponent,
28 VideosListCommonPageComponent
29 ],
30
31 exports: [],
32
33 providers: [
34 OverviewService
35 ]
36 })
37 export class VideosModule { }