diff options
Diffstat (limited to 'shared/models')
-rw-r--r-- | shared/models/videos/video.model.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/shared/models/videos/video.model.ts b/shared/models/videos/video.model.ts index dc12a05d9..3a378419f 100644 --- a/shared/models/videos/video.model.ts +++ b/shared/models/videos/video.model.ts | |||
@@ -28,7 +28,6 @@ export interface Video { | |||
28 | isLocal: boolean | 28 | isLocal: boolean |
29 | name: string | 29 | name: string |
30 | serverHost: string | 30 | serverHost: string |
31 | tags: string[] | ||
32 | thumbnailPath: string | 31 | thumbnailPath: string |
33 | previewPath: string | 32 | previewPath: string |
34 | embedPath: string | 33 | embedPath: string |
@@ -43,6 +42,7 @@ export interface VideoDetails extends Video { | |||
43 | privacyLabel: string | 42 | privacyLabel: string |
44 | descriptionPath: string | 43 | descriptionPath: string |
45 | channel: VideoChannel | 44 | channel: VideoChannel |
45 | tags: string[] | ||
46 | files: VideoFile[] | 46 | files: VideoFile[] |
47 | account: Account | 47 | account: Account |
48 | } | 48 | } |