X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;ds=sidebyside;f=client%2Fsrc%2Fapp%2Fvideos%2Fvideos.module.ts;h=7d2451de720f57107f3b13feb15d37e41fcdc09b;hb=8b13c289f8db1666a3970882797d42f6cfd6128b;hp=03dea17b5b433e27cda9d6362e6fc6e7fb03e58e;hpb=4f8c0eb0e9356ee2782ea6eb12a92e4dc5f66127;p=github%2FChocobozzz%2FPeerTube.git diff --git a/client/src/app/videos/videos.module.ts b/client/src/app/videos/videos.module.ts index 03dea17b5..7d2451de7 100644 --- a/client/src/app/videos/videos.module.ts +++ b/client/src/app/videos/videos.module.ts @@ -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,