]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame_incremental - client/src/app/+videos/videos.module.ts
Fix button height
[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'
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})
37export class VideosModule { }