]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blobdiff - client/src/app/videos/videos.module.ts
Clean up bottom video bar
[github/Chocobozzz/PeerTube.git] / client / src / app / videos / videos.module.ts
index fb2f453b0a3a7fc8dfd5077e07de6e8cf0b95378..75a8dd24f9eb969716a8b2b7a340d7d5cb40733d 100644 (file)
@@ -1,15 +1,25 @@
-import { NgModule } from '@angular/core';
-
-import { VideosRoutingModule } from './videos-routing.module';
-import { VideosComponent } from './videos.component';
-import { VideoAddComponent } from './video-add';
-import { VideoListComponent, VideoMiniatureComponent, VideoSortComponent } from './video-list';
-import { VideoWatchComponent, VideoMagnetComponent, VideoShareComponent, WebTorrentService } from './video-watch';
-import { LoaderComponent, VideoService } from './shared';
-import { SharedModule } from '../shared';
+import { NgModule } from '@angular/core'
+
+import { TagInputModule } from 'ng2-tag-input'
+
+import { VideosRoutingModule } from './videos-routing.module'
+import { VideosComponent } from './videos.component'
+import { VideoAddComponent, VideoUpdateComponent } from './video-edit'
+import { LoaderComponent, VideoListComponent, VideoMiniatureComponent, VideoSortComponent } from './video-list'
+import {
+  VideoWatchComponent,
+  VideoMagnetComponent,
+  VideoReportComponent,
+  VideoShareComponent,
+  WebTorrentService
+} from './video-watch'
+import { 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
   ],