diff options
Diffstat (limited to 'client/src/app/videos/videos.module.ts')
-rw-r--r-- | client/src/app/videos/videos.module.ts | 16 |
1 files changed, 7 insertions, 9 deletions
diff --git a/client/src/app/videos/videos.module.ts b/client/src/app/videos/videos.module.ts index 4f3054c3a..4b14d1da8 100644 --- a/client/src/app/videos/videos.module.ts +++ b/client/src/app/videos/videos.module.ts | |||
@@ -1,7 +1,8 @@ | |||
1 | import { NgModule } from '@angular/core' | 1 | import { NgModule } from '@angular/core' |
2 | import { SharedModule } from '../shared' | 2 | import { SharedModule } from '../shared' |
3 | import { VideoService } from './shared' | 3 | import { VideoSearchComponent } from './video-list' |
4 | import { MyVideosComponent, VideoListComponent, VideoMiniatureComponent, VideoSortComponent } from './video-list' | 4 | import { VideoRecentlyAddedComponent } from './video-list/video-recently-added.component' |
5 | import { VideoTrendingComponent } from './video-list/video-trending.component' | ||
5 | import { VideosRoutingModule } from './videos-routing.module' | 6 | import { VideosRoutingModule } from './videos-routing.module' |
6 | import { VideosComponent } from './videos.component' | 7 | import { VideosComponent } from './videos.component' |
7 | 8 | ||
@@ -14,18 +15,15 @@ import { VideosComponent } from './videos.component' | |||
14 | declarations: [ | 15 | declarations: [ |
15 | VideosComponent, | 16 | VideosComponent, |
16 | 17 | ||
17 | VideoListComponent, | 18 | VideoTrendingComponent, |
18 | MyVideosComponent, | 19 | VideoRecentlyAddedComponent, |
19 | VideoMiniatureComponent, | 20 | VideoSearchComponent |
20 | VideoSortComponent | ||
21 | ], | 21 | ], |
22 | 22 | ||
23 | exports: [ | 23 | exports: [ |
24 | VideosComponent | 24 | VideosComponent |
25 | ], | 25 | ], |
26 | 26 | ||
27 | providers: [ | 27 | providers: [] |
28 | VideoService | ||
29 | ] | ||
30 | }) | 28 | }) |
31 | export class VideosModule { } | 29 | export class VideosModule { } |