aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/videos/recommendations/recommendations.module.ts
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2020-06-23 14:49:20 +0200
committerChocobozzz <chocobozzz@cpy.re>2020-06-23 16:00:49 +0200
commit1942f11d5ee6926ad93dc1b79fae18325ba5de18 (patch)
tree3f2a3cd9466a56c419d197ac832a3e9cbc86bec4 /client/src/app/videos/recommendations/recommendations.module.ts
parent67ed6552b831df66713bac9e672738796128d33f (diff)
downloadPeerTube-1942f11d5ee6926ad93dc1b79fae18325ba5de18.tar.gz
PeerTube-1942f11d5ee6926ad93dc1b79fae18325ba5de18.tar.zst
PeerTube-1942f11d5ee6926ad93dc1b79fae18325ba5de18.zip
Lazy load all routes
Diffstat (limited to 'client/src/app/videos/recommendations/recommendations.module.ts')
-rw-r--r--client/src/app/videos/recommendations/recommendations.module.ts32
1 files changed, 0 insertions, 32 deletions
diff --git a/client/src/app/videos/recommendations/recommendations.module.ts b/client/src/app/videos/recommendations/recommendations.module.ts
deleted file mode 100644
index 03cc272ca..000000000
--- a/client/src/app/videos/recommendations/recommendations.module.ts
+++ /dev/null
@@ -1,32 +0,0 @@
1import { InputSwitchModule } from 'primeng/inputswitch'
2import { CommonModule } from '@angular/common'
3import { NgModule } from '@angular/core'
4import { SharedMainModule } from '@app/shared/shared-main'
5import { SharedVideoMiniatureModule } from '@app/shared/shared-video-miniature'
6import { SharedVideoPlaylistModule } from '@app/shared/shared-video-playlist'
7import { RecentVideosRecommendationService } from './recent-videos-recommendation.service'
8import { RecommendedVideosComponent } from './recommended-videos.component'
9import { RecommendedVideosStore } from './recommended-videos.store'
10
11@NgModule({
12 imports: [
13 CommonModule,
14 InputSwitchModule,
15
16 SharedMainModule,
17 SharedVideoPlaylistModule,
18 SharedVideoMiniatureModule
19 ],
20 declarations: [
21 RecommendedVideosComponent
22 ],
23 exports: [
24 RecommendedVideosComponent
25 ],
26 providers: [
27 RecommendedVideosStore,
28 RecentVideosRecommendationService
29 ]
30})
31export class RecommendationsModule {
32}