diff options
Diffstat (limited to 'client/src/app/videos/videos.module.ts')
-rw-r--r-- | client/src/app/videos/videos.module.ts | 21 |
1 files changed, 15 insertions, 6 deletions
diff --git a/client/src/app/videos/videos.module.ts b/client/src/app/videos/videos.module.ts index 95078a734..217e5bb50 100644 --- a/client/src/app/videos/videos.module.ts +++ b/client/src/app/videos/videos.module.ts | |||
@@ -1,18 +1,27 @@ | |||
1 | import { NgModule } from '@angular/core' | 1 | import { NgModule } from '@angular/core' |
2 | import { VideoLocalComponent } from '@app/videos/video-list/video-local.component' | 2 | import { SharedFormModule } from '@app/shared/shared-forms' |
3 | import { SharedModule } from '../shared' | 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' | ||
4 | import { VideoRecentlyAddedComponent } from './video-list/video-recently-added.component' | 10 | import { VideoRecentlyAddedComponent } from './video-list/video-recently-added.component' |
5 | import { VideoTrendingComponent } from './video-list/video-trending.component' | 11 | import { VideoTrendingComponent } from './video-list/video-trending.component' |
6 | import { VideoMostLikedComponent } from './video-list/video-most-liked.component' | 12 | import { VideoUserSubscriptionsComponent } from './video-list/video-user-subscriptions.component' |
7 | import { VideosRoutingModule } from './videos-routing.module' | 13 | import { VideosRoutingModule } from './videos-routing.module' |
8 | import { VideosComponent } from './videos.component' | 14 | import { VideosComponent } from './videos.component' |
9 | import { VideoUserSubscriptionsComponent } from '@app/videos/video-list/video-user-subscriptions.component' | ||
10 | import { VideoOverviewComponent } from '@app/videos/video-list/video-overview.component' | ||
11 | 15 | ||
12 | @NgModule({ | 16 | @NgModule({ |
13 | imports: [ | 17 | imports: [ |
14 | VideosRoutingModule, | 18 | VideosRoutingModule, |
15 | SharedModule | 19 | |
20 | SharedMainModule, | ||
21 | SharedFormModule, | ||
22 | SharedVideoMiniatureModule, | ||
23 | SharedUserSubscriptionModule, | ||
24 | SharedGlobalIconModule | ||
16 | ], | 25 | ], |
17 | 26 | ||
18 | declarations: [ | 27 | declarations: [ |