diff options
Diffstat (limited to 'client/src/app/videos/videos.module.ts')
-rw-r--r-- | client/src/app/videos/videos.module.ts | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/client/src/app/videos/videos.module.ts b/client/src/app/videos/videos.module.ts index bc86118cc..3a0c3feac 100644 --- a/client/src/app/videos/videos.module.ts +++ b/client/src/app/videos/videos.module.ts | |||
@@ -1,24 +1,13 @@ | |||
1 | import { NgModule } from '@angular/core' | 1 | import { NgModule } from '@angular/core' |
2 | 2 | ||
3 | import { TagInputModule } from 'ngx-chips' | ||
4 | |||
5 | import { VideosRoutingModule } from './videos-routing.module' | 3 | import { VideosRoutingModule } from './videos-routing.module' |
6 | import { VideosComponent } from './videos.component' | 4 | import { VideosComponent } from './videos.component' |
7 | import { VideoAddComponent, VideoUpdateComponent } from './video-edit' | ||
8 | import { LoaderComponent, VideoListComponent, VideoMiniatureComponent, VideoSortComponent } from './video-list' | 5 | import { LoaderComponent, VideoListComponent, VideoMiniatureComponent, VideoSortComponent } from './video-list' |
9 | import { | ||
10 | VideoWatchComponent, | ||
11 | VideoMagnetComponent, | ||
12 | VideoReportComponent, | ||
13 | VideoShareComponent | ||
14 | } from './video-watch' | ||
15 | import { VideoService } from './shared' | 6 | import { VideoService } from './shared' |
16 | import { SharedModule } from '../shared' | 7 | import { SharedModule } from '../shared' |
17 | 8 | ||
18 | @NgModule({ | 9 | @NgModule({ |
19 | imports: [ | 10 | imports: [ |
20 | TagInputModule, | ||
21 | |||
22 | VideosRoutingModule, | 11 | VideosRoutingModule, |
23 | SharedModule | 12 | SharedModule |
24 | ], | 13 | ], |
@@ -26,18 +15,10 @@ import { SharedModule } from '../shared' | |||
26 | declarations: [ | 15 | declarations: [ |
27 | VideosComponent, | 16 | VideosComponent, |
28 | 17 | ||
29 | VideoAddComponent, | ||
30 | VideoUpdateComponent, | ||
31 | |||
32 | VideoListComponent, | 18 | VideoListComponent, |
33 | VideoMiniatureComponent, | 19 | VideoMiniatureComponent, |
34 | VideoSortComponent, | 20 | VideoSortComponent, |
35 | 21 | ||
36 | VideoWatchComponent, | ||
37 | VideoMagnetComponent, | ||
38 | VideoShareComponent, | ||
39 | VideoReportComponent, | ||
40 | |||
41 | LoaderComponent | 22 | LoaderComponent |
42 | ], | 23 | ], |
43 | 24 | ||