]>
Commit | Line | Data |
---|---|---|
df98563e | 1 | import { NgModule } from '@angular/core' |
746018f6 | 2 | import { SharedActorImageModule } from '@app/shared/shared-actor-image/shared-actor-image.module' |
67ed6552 C |
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' | |
dd24f1bb | 8 | import { OverviewService, VideosListCommonPageComponent } from './video-list' |
67ed6552 | 9 | import { VideoOverviewComponent } from './video-list/overview/video-overview.component' |
67ed6552 | 10 | import { VideoUserSubscriptionsComponent } from './video-list/video-user-subscriptions.component' |
df98563e | 11 | import { VideosRoutingModule } from './videos-routing.module' |
693b1aba C |
12 | |
13 | @NgModule({ | |
14 | imports: [ | |
15 | VideosRoutingModule, | |
67ed6552 C |
16 | |
17 | SharedMainModule, | |
18 | SharedFormModule, | |
19 | SharedVideoMiniatureModule, | |
20 | SharedUserSubscriptionModule, | |
746018f6 C |
21 | SharedGlobalIconModule, |
22 | SharedActorImageModule | |
693b1aba C |
23 | ], |
24 | ||
25 | declarations: [ | |
2d3741d6 | 26 | VideoUserSubscriptionsComponent, |
dd24f1bb C |
27 | VideoOverviewComponent, |
28 | VideosListCommonPageComponent | |
693b1aba C |
29 | ], |
30 | ||
eeae8142 | 31 | exports: [], |
693b1aba | 32 | |
1942f11d C |
33 | providers: [ |
34 | OverviewService | |
35 | ] | |
693b1aba C |
36 | }) |
37 | export class VideosModule { } |