diff options
author | Chocobozzz <florian.bigard@gmail.com> | 2017-12-01 14:46:22 +0100 |
---|---|---|
committer | Chocobozzz <florian.bigard@gmail.com> | 2017-12-01 14:46:22 +0100 |
commit | 9bf9d2a5c223bf006496ae7adf0c0bd7a7975108 (patch) | |
tree | 7e72814af43176ad96841046a9310af001d23a14 /client/src/app/videos/videos.module.ts | |
parent | 26c6ee80d0fecfce595e8970f15717560b4f4ceb (diff) | |
download | PeerTube-9bf9d2a5c223bf006496ae7adf0c0bd7a7975108.tar.gz PeerTube-9bf9d2a5c223bf006496ae7adf0c0bd7a7975108.tar.zst PeerTube-9bf9d2a5c223bf006496ae7adf0c0bd7a7975108.zip |
Begin videos list new design
Diffstat (limited to 'client/src/app/videos/videos.module.ts')
-rw-r--r-- | client/src/app/videos/videos.module.ts | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/client/src/app/videos/videos.module.ts b/client/src/app/videos/videos.module.ts index 4f3054c3a..93193000c 100644 --- a/client/src/app/videos/videos.module.ts +++ b/client/src/app/videos/videos.module.ts | |||
@@ -1,7 +1,9 @@ | |||
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 { VideoService } from './shared' |
4 | import { MyVideosComponent, VideoListComponent, VideoMiniatureComponent, VideoSortComponent } from './video-list' | 4 | import { MyVideosComponent, VideoMiniatureComponent } from './video-list' |
5 | import { VideoRecentlyAddedComponent } from './video-list/video-recently-added.component' | ||
6 | import { VideoTrendingComponent } from './video-list/video-trending.component' | ||
5 | import { VideosRoutingModule } from './videos-routing.module' | 7 | import { VideosRoutingModule } from './videos-routing.module' |
6 | import { VideosComponent } from './videos.component' | 8 | import { VideosComponent } from './videos.component' |
7 | 9 | ||
@@ -14,10 +16,10 @@ import { VideosComponent } from './videos.component' | |||
14 | declarations: [ | 16 | declarations: [ |
15 | VideosComponent, | 17 | VideosComponent, |
16 | 18 | ||
17 | VideoListComponent, | 19 | VideoTrendingComponent, |
20 | VideoRecentlyAddedComponent, | ||
18 | MyVideosComponent, | 21 | MyVideosComponent, |
19 | VideoMiniatureComponent, | 22 | VideoMiniatureComponent |
20 | VideoSortComponent | ||
21 | ], | 23 | ], |
22 | 24 | ||
23 | exports: [ | 25 | exports: [ |