aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/videos/videos.module.ts
diff options
context:
space:
mode:
authorChocobozzz <florian.bigard@gmail.com>2017-01-20 19:22:15 +0100
committerChocobozzz <florian.bigard@gmail.com>2017-01-20 19:22:15 +0100
commit4f8c0eb0e9356ee2782ea6eb12a92e4dc5f66127 (patch)
treebcef1232a565ceaf3d43415a0b08e53e30c236d7 /client/src/app/videos/videos.module.ts
parent872a4c7cea861246cf84fa3686bd9d40c684535f (diff)
downloadPeerTube-4f8c0eb0e9356ee2782ea6eb12a92e4dc5f66127.tar.gz
PeerTube-4f8c0eb0e9356ee2782ea6eb12a92e4dc5f66127.tar.zst
PeerTube-4f8c0eb0e9356ee2782ea6eb12a92e4dc5f66127.zip
Client: add ability to report a video
Diffstat (limited to 'client/src/app/videos/videos.module.ts')
-rw-r--r--client/src/app/videos/videos.module.ts9
1 files changed, 8 insertions, 1 deletions
diff --git a/client/src/app/videos/videos.module.ts b/client/src/app/videos/videos.module.ts
index fb2f453b0..03dea17b5 100644
--- a/client/src/app/videos/videos.module.ts
+++ b/client/src/app/videos/videos.module.ts
@@ -4,7 +4,13 @@ import { VideosRoutingModule } from './videos-routing.module';
4import { VideosComponent } from './videos.component'; 4import { VideosComponent } from './videos.component';
5import { VideoAddComponent } from './video-add'; 5import { VideoAddComponent } from './video-add';
6import { VideoListComponent, VideoMiniatureComponent, VideoSortComponent } from './video-list'; 6import { VideoListComponent, VideoMiniatureComponent, VideoSortComponent } from './video-list';
7import { VideoWatchComponent, VideoMagnetComponent, VideoShareComponent, WebTorrentService } from './video-watch'; 7import {
8 VideoWatchComponent,
9 VideoMagnetComponent,
10 VideoReportComponent,
11 VideoShareComponent,
12 WebTorrentService
13} from './video-watch';
8import { LoaderComponent, VideoService } from './shared'; 14import { LoaderComponent, VideoService } from './shared';
9import { SharedModule } from '../shared'; 15import { SharedModule } from '../shared';
10 16
@@ -26,6 +32,7 @@ import { SharedModule } from '../shared';
26 VideoWatchComponent, 32 VideoWatchComponent,
27 VideoMagnetComponent, 33 VideoMagnetComponent,
28 VideoShareComponent, 34 VideoShareComponent,
35 VideoReportComponent,
29 36
30 LoaderComponent 37 LoaderComponent
31 ], 38 ],