]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/+videos/videos.module.ts
move from trending routes to alg param
[github/Chocobozzz/PeerTube.git] / client / src / app / +videos / videos.module.ts
CommitLineData
df98563e 1import { NgModule } from '@angular/core'
67ed6552
C
2import { SharedFormModule } from '@app/shared/shared-forms'
3import { SharedGlobalIconModule } from '@app/shared/shared-icons'
4import { SharedMainModule } from '@app/shared/shared-main'
5import { SharedUserSubscriptionModule } from '@app/shared/shared-user-subscription'
6import { SharedVideoMiniatureModule } from '@app/shared/shared-video-miniature'
ba5d4a84 7import { OverviewService, VideoTrendingComponent } from './video-list'
67ed6552 8import { VideoOverviewComponent } from './video-list/overview/video-overview.component'
5bcbcbe3 9import { VideoTrendingHeaderComponent } from './video-list/trending/video-trending-header.component'
67ed6552 10import { VideoLocalComponent } from './video-list/video-local.component'
9bf9d2a5 11import { VideoRecentlyAddedComponent } from './video-list/video-recently-added.component'
67ed6552 12import { VideoUserSubscriptionsComponent } from './video-list/video-user-subscriptions.component'
df98563e
C
13import { VideosRoutingModule } from './videos-routing.module'
14import { VideosComponent } from './videos.component'
693b1aba
C
15
16@NgModule({
17 imports: [
18 VideosRoutingModule,
67ed6552
C
19
20 SharedMainModule,
21 SharedFormModule,
22 SharedVideoMiniatureModule,
23 SharedUserSubscriptionModule,
24 SharedGlobalIconModule
693b1aba
C
25 ],
26
27 declarations: [
28 VideosComponent,
29
5bcbcbe3 30 VideoTrendingHeaderComponent,
ba5d4a84 31 VideoTrendingComponent,
9bf9d2a5 32 VideoRecentlyAddedComponent,
22a16e36 33 VideoLocalComponent,
2d3741d6
C
34 VideoUserSubscriptionsComponent,
35 VideoOverviewComponent
693b1aba
C
36 ],
37
38 exports: [
39 VideosComponent
40 ],
41
1942f11d
C
42 providers: [
43 OverviewService
44 ]
693b1aba
C
45})
46export class VideosModule { }