diff options
Diffstat (limited to 'client/src/app/videos/+video-edit')
-rw-r--r-- | client/src/app/videos/+video-edit/shared/video-edit.component.scss (renamed from client/src/app/videos/+video-edit/video-edit.component.scss) | 0 | ||||
-rw-r--r-- | client/src/app/videos/+video-edit/shared/video-edit.module.ts (renamed from client/src/app/videos/+video-edit/video-edit.module.ts) | 4 | ||||
-rw-r--r-- | client/src/app/videos/+video-edit/video-add.component.ts | 2 | ||||
-rw-r--r-- | client/src/app/videos/+video-edit/video-add.module.ts | 5 | ||||
-rw-r--r-- | client/src/app/videos/+video-edit/video-update.component.ts | 2 | ||||
-rw-r--r-- | client/src/app/videos/+video-edit/video-update.module.ts | 5 |
6 files changed, 8 insertions, 10 deletions
diff --git a/client/src/app/videos/+video-edit/video-edit.component.scss b/client/src/app/videos/+video-edit/shared/video-edit.component.scss index 9ee0c520c..9ee0c520c 100644 --- a/client/src/app/videos/+video-edit/video-edit.component.scss +++ b/client/src/app/videos/+video-edit/shared/video-edit.component.scss | |||
diff --git a/client/src/app/videos/+video-edit/video-edit.module.ts b/client/src/app/videos/+video-edit/shared/video-edit.module.ts index 33f654960..c64cea920 100644 --- a/client/src/app/videos/+video-edit/video-edit.module.ts +++ b/client/src/app/videos/+video-edit/shared/video-edit.module.ts | |||
@@ -3,8 +3,8 @@ import { NgModule } from '@angular/core' | |||
3 | import { TagInputModule } from 'ngx-chips' | 3 | import { TagInputModule } from 'ngx-chips' |
4 | import { TabsModule } from 'ngx-bootstrap/tabs' | 4 | import { TabsModule } from 'ngx-bootstrap/tabs' |
5 | 5 | ||
6 | import { VideoService, MarkdownService, VideoDescriptionComponent } from '../shared' | 6 | import { VideoService, MarkdownService, VideoDescriptionComponent } from '../../shared' |
7 | import { SharedModule } from '../../shared' | 7 | import { SharedModule } from '../../../shared' |
8 | 8 | ||
9 | @NgModule({ | 9 | @NgModule({ |
10 | imports: [ | 10 | imports: [ |
diff --git a/client/src/app/videos/+video-edit/video-add.component.ts b/client/src/app/videos/+video-edit/video-add.component.ts index c8094f792..1704cf486 100644 --- a/client/src/app/videos/+video-edit/video-add.component.ts +++ b/client/src/app/videos/+video-edit/video-add.component.ts | |||
@@ -23,7 +23,7 @@ import { HttpEventType, HttpResponse } from '@angular/common/http' | |||
23 | 23 | ||
24 | @Component({ | 24 | @Component({ |
25 | selector: 'my-videos-add', | 25 | selector: 'my-videos-add', |
26 | styleUrls: [ './video-edit.component.scss' ], | 26 | styleUrls: [ './shared/video-edit.component.scss' ], |
27 | templateUrl: './video-add.component.html' | 27 | templateUrl: './video-add.component.html' |
28 | }) | 28 | }) |
29 | 29 | ||
diff --git a/client/src/app/videos/+video-edit/video-add.module.ts b/client/src/app/videos/+video-edit/video-add.module.ts index 3d937b008..f58d12dac 100644 --- a/client/src/app/videos/+video-edit/video-add.module.ts +++ b/client/src/app/videos/+video-edit/video-add.module.ts | |||
@@ -1,9 +1,8 @@ | |||
1 | import { NgModule } from '@angular/core' | 1 | import { NgModule } from '@angular/core' |
2 | 2 | import { SharedModule } from '../../shared' | |
3 | import { VideoEditModule } from './shared/video-edit.module' | ||
3 | import { VideoAddRoutingModule } from './video-add-routing.module' | 4 | import { VideoAddRoutingModule } from './video-add-routing.module' |
4 | import { VideoAddComponent } from './video-add.component' | 5 | import { VideoAddComponent } from './video-add.component' |
5 | import { VideoEditModule } from './video-edit.module' | ||
6 | import { SharedModule } from '../../shared' | ||
7 | 6 | ||
8 | @NgModule({ | 7 | @NgModule({ |
9 | imports: [ | 8 | imports: [ |
diff --git a/client/src/app/videos/+video-edit/video-update.component.ts b/client/src/app/videos/+video-edit/video-update.component.ts index be663575f..0e966cb50 100644 --- a/client/src/app/videos/+video-edit/video-update.component.ts +++ b/client/src/app/videos/+video-edit/video-update.component.ts | |||
@@ -21,7 +21,7 @@ import { VideoPrivacy } from '../../../../../shared/models/videos/video-privacy. | |||
21 | 21 | ||
22 | @Component({ | 22 | @Component({ |
23 | selector: 'my-videos-update', | 23 | selector: 'my-videos-update', |
24 | styleUrls: [ './video-edit.component.scss' ], | 24 | styleUrls: [ './shared/video-edit.component.scss' ], |
25 | templateUrl: './video-update.component.html' | 25 | templateUrl: './video-update.component.html' |
26 | }) | 26 | }) |
27 | 27 | ||
diff --git a/client/src/app/videos/+video-edit/video-update.module.ts b/client/src/app/videos/+video-edit/video-update.module.ts index f7bd77c75..3b45c72a5 100644 --- a/client/src/app/videos/+video-edit/video-update.module.ts +++ b/client/src/app/videos/+video-edit/video-update.module.ts | |||
@@ -1,9 +1,8 @@ | |||
1 | import { NgModule } from '@angular/core' | 1 | import { NgModule } from '@angular/core' |
2 | 2 | import { SharedModule } from '../../shared' | |
3 | import { VideoEditModule } from './shared/video-edit.module' | ||
3 | import { VideoUpdateRoutingModule } from './video-update-routing.module' | 4 | import { VideoUpdateRoutingModule } from './video-update-routing.module' |
4 | import { VideoUpdateComponent } from './video-update.component' | 5 | import { VideoUpdateComponent } from './video-update.component' |
5 | import { VideoEditModule } from './video-edit.module' | ||
6 | import { SharedModule } from '../../shared' | ||
7 | 6 | ||
8 | @NgModule({ | 7 | @NgModule({ |
9 | imports: [ | 8 | imports: [ |