]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blobdiff - client/src/app/videos/videos.module.ts
Change video spinner
[github/Chocobozzz/PeerTube.git] / client / src / app / videos / videos.module.ts
index 4f2839c85aa60e041bd3673f4d70a187deb44dea..3a0c3feac122241f4387a152bf91db7e8aaee59d 100644 (file)
@@ -1,25 +1,13 @@
-import { NgModule } from '@angular/core';
+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 { VideoListComponent, VideoMiniatureComponent, VideoSortComponent } from './video-list';
-import {
-  VideoWatchComponent,
-  VideoMagnetComponent,
-  VideoReportComponent,
-  VideoShareComponent,
-  WebTorrentService
-} from './video-watch';
-import { LoaderComponent, VideoService } from './shared';
-import { SharedModule } from '../shared';
+import { VideosRoutingModule } from './videos-routing.module'
+import { VideosComponent } from './videos.component'
+import { LoaderComponent, VideoListComponent, VideoMiniatureComponent, VideoSortComponent } from './video-list'
+import { VideoService } from './shared'
+import { SharedModule } from '../shared'
 
 @NgModule({
   imports: [
-    // TagInputModule,
-
     VideosRoutingModule,
     SharedModule
   ],
@@ -27,18 +15,10 @@ import { SharedModule } from '../shared';
   declarations: [
     VideosComponent,
 
-    VideoAddComponent,
-    VideoUpdateComponent,
-
     VideoListComponent,
     VideoMiniatureComponent,
     VideoSortComponent,
 
-    VideoWatchComponent,
-    VideoMagnetComponent,
-    VideoShareComponent,
-    VideoReportComponent,
-
     LoaderComponent
   ],
 
@@ -47,8 +27,7 @@ import { SharedModule } from '../shared';
   ],
 
   providers: [
-    VideoService,
-    WebTorrentService
+    VideoService
   ]
 })
 export class VideosModule { }