diff options
author | Chocobozzz <florian.bigard@gmail.com> | 2017-12-01 18:56:26 +0100 |
---|---|---|
committer | Chocobozzz <florian.bigard@gmail.com> | 2017-12-01 18:56:26 +0100 |
commit | 202f6b6c9dcc9b0aec4b0c1b15e455c22a7952a7 (patch) | |
tree | 605df063371b6be32ca0773bf2917b0c5d9163ae /client/src/app/videos/videos.module.ts | |
parent | c30745f342480b59fb0856a059c8c2fbffbcfc6a (diff) | |
download | PeerTube-202f6b6c9dcc9b0aec4b0c1b15e455c22a7952a7.tar.gz PeerTube-202f6b6c9dcc9b0aec4b0c1b15e455c22a7952a7.tar.zst PeerTube-202f6b6c9dcc9b0aec4b0c1b15e455c22a7952a7.zip |
Begin videos of an account
Diffstat (limited to 'client/src/app/videos/videos.module.ts')
-rw-r--r-- | client/src/app/videos/videos.module.ts | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/client/src/app/videos/videos.module.ts b/client/src/app/videos/videos.module.ts index 1d6194158..6d846fd3b 100644 --- a/client/src/app/videos/videos.module.ts +++ b/client/src/app/videos/videos.module.ts | |||
@@ -1,7 +1,5 @@ | |||
1 | import { NgModule } from '@angular/core' | 1 | import { NgModule } from '@angular/core' |
2 | import { InfiniteScrollModule } from 'ngx-infinite-scroll' | ||
3 | import { SharedModule } from '../shared' | 2 | import { SharedModule } from '../shared' |
4 | import { VideoService } from './shared' | ||
5 | import { VideoMiniatureComponent } from './video-list' | 3 | import { VideoMiniatureComponent } from './video-list' |
6 | import { VideoRecentlyAddedComponent } from './video-list/video-recently-added.component' | 4 | import { VideoRecentlyAddedComponent } from './video-list/video-recently-added.component' |
7 | import { VideoTrendingComponent } from './video-list/video-trending.component' | 5 | import { VideoTrendingComponent } from './video-list/video-trending.component' |
@@ -11,8 +9,7 @@ import { VideosComponent } from './videos.component' | |||
11 | @NgModule({ | 9 | @NgModule({ |
12 | imports: [ | 10 | imports: [ |
13 | VideosRoutingModule, | 11 | VideosRoutingModule, |
14 | SharedModule, | 12 | SharedModule |
15 | InfiniteScrollModule | ||
16 | ], | 13 | ], |
17 | 14 | ||
18 | declarations: [ | 15 | declarations: [ |
@@ -27,8 +24,6 @@ import { VideosComponent } from './videos.component' | |||
27 | VideosComponent | 24 | VideosComponent |
28 | ], | 25 | ], |
29 | 26 | ||
30 | providers: [ | 27 | providers: [] |
31 | VideoService | ||
32 | ] | ||
33 | }) | 28 | }) |
34 | export class VideosModule { } | 29 | export class VideosModule { } |