diff options
Diffstat (limited to 'client/src/app/shared')
-rw-r--r-- | client/src/app/shared/video/video-edit.model.ts | 2 | ||||
-rw-r--r-- | client/src/app/shared/video/video.model.ts | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/client/src/app/shared/video/video-edit.model.ts b/client/src/app/shared/video/video-edit.model.ts index c1a70d1b3..39826d71e 100644 --- a/client/src/app/shared/video/video-edit.model.ts +++ b/client/src/app/shared/video/video-edit.model.ts | |||
@@ -4,7 +4,7 @@ import { VideoPrivacy } from '../../../../../shared/models/videos/video-privacy. | |||
4 | export class VideoEdit { | 4 | export class VideoEdit { |
5 | category: number | 5 | category: number |
6 | licence: number | 6 | licence: number |
7 | language: number | 7 | language: string |
8 | description: string | 8 | description: string |
9 | name: string | 9 | name: string |
10 | tags: string[] | 10 | tags: string[] |
diff --git a/client/src/app/shared/video/video.model.ts b/client/src/app/shared/video/video.model.ts index e25c172e0..a284c1688 100644 --- a/client/src/app/shared/video/video.model.ts +++ b/client/src/app/shared/video/video.model.ts | |||
@@ -13,7 +13,7 @@ export class Video implements VideoServerModel { | |||
13 | publishedAt: Date | 13 | publishedAt: Date |
14 | category: VideoConstant<number> | 14 | category: VideoConstant<number> |
15 | licence: VideoConstant<number> | 15 | licence: VideoConstant<number> |
16 | language: VideoConstant<number> | 16 | language: VideoConstant<string> |
17 | privacy: VideoConstant<VideoPrivacy> | 17 | privacy: VideoConstant<VideoPrivacy> |
18 | description: string | 18 | description: string |
19 | duration: number | 19 | duration: number |