]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame_incremental - client/src/app/+videos/videos.module.ts
prevent multiple post-process triggering of upload-resumable (#4175)
[github/Chocobozzz/PeerTube.git] / client / src / app / +videos / videos.module.ts
... / ...
CommitLineData
1import { NgModule } from '@angular/core'
2import { SharedActorImageModule } from '@app/shared/shared-actor-image/shared-actor-image.module'
3import { SharedFormModule } from '@app/shared/shared-forms'
4import { SharedGlobalIconModule } from '@app/shared/shared-icons'
5import { SharedMainModule } from '@app/shared/shared-main'
6import { SharedUserSubscriptionModule } from '@app/shared/shared-user-subscription'
7import { SharedVideoMiniatureModule } from '@app/shared/shared-video-miniature'
8import { OverviewService, VideosListCommonPageComponent } from './video-list'
9import { VideoOverviewComponent } from './video-list/overview/video-overview.component'
10import { VideoUserSubscriptionsComponent } from './video-list/video-user-subscriptions.component'
11import { VideosRoutingModule } from './videos-routing.module'
12import { 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})
42export class VideosModule { }