]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blobdiff - client/src/app/videos/videos.module.ts
Client: add ability to hide left menu
[github/Chocobozzz/PeerTube.git] / client / src / app / videos / videos.module.ts
index fb2f453b0a3a7fc8dfd5077e07de6e8cf0b95378..04a06e0a367bd980a94f539caf7ec18e6b749775 100644 (file)
@@ -1,15 +1,25 @@
 import { NgModule } from '@angular/core';
 
+import { TagInputModule } from 'ng2-tag-input';
+
 import { VideosRoutingModule } from './videos-routing.module';
 import { VideosComponent } from './videos.component';
-import { VideoAddComponent } from './video-add';
+import { VideoAddComponent, VideoUpdateComponent } from './video-edit';
 import { VideoListComponent, VideoMiniatureComponent, VideoSortComponent } from './video-list';
-import { VideoWatchComponent, VideoMagnetComponent, VideoShareComponent, WebTorrentService } from './video-watch';
+import {
+  VideoWatchComponent,
+  VideoMagnetComponent,
+  VideoReportComponent,
+  VideoShareComponent,
+  WebTorrentService
+} from './video-watch';
 import { LoaderComponent, VideoService } from './shared';
 import { SharedModule } from '../shared';
 
 @NgModule({
   imports: [
+    TagInputModule,
+
     VideosRoutingModule,
     SharedModule
   ],
@@ -18,6 +28,7 @@ import { SharedModule } from '../shared';
     VideosComponent,
 
     VideoAddComponent,
+    VideoUpdateComponent,
 
     VideoListComponent,
     VideoMiniatureComponent,
@@ -26,6 +37,7 @@ import { SharedModule } from '../shared';
     VideoWatchComponent,
     VideoMagnetComponent,
     VideoShareComponent,
+    VideoReportComponent,
 
     LoaderComponent
   ],