]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blobdiff - client/src/app/videos/videos.module.ts
Fix page titles
[github/Chocobozzz/PeerTube.git] / client / src / app / videos / videos.module.ts
index 03dea17b5b433e27cda9d6362e6fc6e7fb03e58e..7d2451de720f57107f3b13feb15d37e41fcdc09b 100644 (file)
@@ -1,21 +1,25 @@
-import { NgModule } from '@angular/core';
+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 { TagInputModule } from 'ngx-chips'
+
+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 { LoaderComponent, VideoService } from './shared';
-import { SharedModule } from '../shared';
+} from './video-watch'
+import { VideoService } from './shared'
+import { SharedModule } from '../shared'
 
 @NgModule({
   imports: [
+    TagInputModule,
+
     VideosRoutingModule,
     SharedModule
   ],
@@ -24,6 +28,7 @@ import { SharedModule } from '../shared';
     VideosComponent,
 
     VideoAddComponent,
+    VideoUpdateComponent,
 
     VideoListComponent,
     VideoMiniatureComponent,