]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blobdiff - client/src/app/videos/videos.module.ts
Client: display video tags
[github/Chocobozzz/PeerTube.git] / client / src / app / videos / videos.module.ts
index 03dea17b5b433e27cda9d6362e6fc6e7fb03e58e..04a06e0a367bd980a94f539caf7ec18e6b749775 100644 (file)
@@ -1,8 +1,10 @@
 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,
@@ -16,6 +18,8 @@ import { SharedModule } from '../shared';
 
 @NgModule({
   imports: [
+    TagInputModule,
+
     VideosRoutingModule,
     SharedModule
   ],
@@ -24,6 +28,7 @@ import { SharedModule } from '../shared';
     VideosComponent,
 
     VideoAddComponent,
+    VideoUpdateComponent,
 
     VideoListComponent,
     VideoMiniatureComponent,