diff options
author | Chocobozzz <me@florianbigard.com> | 2020-06-23 14:49:20 +0200 |
---|---|---|
committer | Chocobozzz <chocobozzz@cpy.re> | 2020-06-23 16:00:49 +0200 |
commit | 1942f11d5ee6926ad93dc1b79fae18325ba5de18 (patch) | |
tree | 3f2a3cd9466a56c419d197ac832a3e9cbc86bec4 /client/src/app/videos/videos.module.ts | |
parent | 67ed6552b831df66713bac9e672738796128d33f (diff) | |
download | PeerTube-1942f11d5ee6926ad93dc1b79fae18325ba5de18.tar.gz PeerTube-1942f11d5ee6926ad93dc1b79fae18325ba5de18.tar.zst PeerTube-1942f11d5ee6926ad93dc1b79fae18325ba5de18.zip |
Lazy load all routes
Diffstat (limited to 'client/src/app/videos/videos.module.ts')
-rw-r--r-- | client/src/app/videos/videos.module.ts | 44 |
1 files changed, 0 insertions, 44 deletions
diff --git a/client/src/app/videos/videos.module.ts b/client/src/app/videos/videos.module.ts deleted file mode 100644 index 217e5bb50..000000000 --- a/client/src/app/videos/videos.module.ts +++ /dev/null | |||
@@ -1,44 +0,0 @@ | |||
1 | import { NgModule } from '@angular/core' | ||
2 | import { SharedFormModule } from '@app/shared/shared-forms' | ||
3 | import { SharedGlobalIconModule } from '@app/shared/shared-icons' | ||
4 | import { SharedMainModule } from '@app/shared/shared-main' | ||
5 | import { SharedUserSubscriptionModule } from '@app/shared/shared-user-subscription' | ||
6 | import { SharedVideoMiniatureModule } from '@app/shared/shared-video-miniature' | ||
7 | import { VideoOverviewComponent } from './video-list/overview/video-overview.component' | ||
8 | import { VideoLocalComponent } from './video-list/video-local.component' | ||
9 | import { VideoMostLikedComponent } from './video-list/video-most-liked.component' | ||
10 | import { VideoRecentlyAddedComponent } from './video-list/video-recently-added.component' | ||
11 | import { VideoTrendingComponent } from './video-list/video-trending.component' | ||
12 | import { VideoUserSubscriptionsComponent } from './video-list/video-user-subscriptions.component' | ||
13 | import { VideosRoutingModule } from './videos-routing.module' | ||
14 | import { VideosComponent } from './videos.component' | ||
15 | |||
16 | @NgModule({ | ||
17 | imports: [ | ||
18 | VideosRoutingModule, | ||
19 | |||
20 | SharedMainModule, | ||
21 | SharedFormModule, | ||
22 | SharedVideoMiniatureModule, | ||
23 | SharedUserSubscriptionModule, | ||
24 | SharedGlobalIconModule | ||
25 | ], | ||
26 | |||
27 | declarations: [ | ||
28 | VideosComponent, | ||
29 | |||
30 | VideoTrendingComponent, | ||
31 | VideoMostLikedComponent, | ||
32 | VideoRecentlyAddedComponent, | ||
33 | VideoLocalComponent, | ||
34 | VideoUserSubscriptionsComponent, | ||
35 | VideoOverviewComponent | ||
36 | ], | ||
37 | |||
38 | exports: [ | ||
39 | VideosComponent | ||
40 | ], | ||
41 | |||
42 | providers: [] | ||
43 | }) | ||
44 | export class VideosModule { } | ||