diff options
Diffstat (limited to 'shared/models/videos/video.model.ts')
-rw-r--r-- | shared/models/videos/video.model.ts | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/shared/models/videos/video.model.ts b/shared/models/videos/video.model.ts index 08b29425c..dc12a05d9 100644 --- a/shared/models/videos/video.model.ts +++ b/shared/models/videos/video.model.ts | |||
@@ -1,3 +1,4 @@ | |||
1 | import { Account } from '../accounts' | ||
1 | import { VideoChannel } from './video-channel.model' | 2 | import { VideoChannel } from './video-channel.model' |
2 | import { VideoPrivacy } from './video-privacy.enum' | 3 | import { VideoPrivacy } from './video-privacy.enum' |
3 | 4 | ||
@@ -13,7 +14,7 @@ export interface VideoFile { | |||
13 | export interface Video { | 14 | export interface Video { |
14 | id: number | 15 | id: number |
15 | uuid: string | 16 | uuid: string |
16 | account: string | 17 | accountName: string |
17 | createdAt: Date | string | 18 | createdAt: Date | string |
18 | updatedAt: Date | string | 19 | updatedAt: Date | string |
19 | categoryLabel: string | 20 | categoryLabel: string |
@@ -43,4 +44,5 @@ export interface VideoDetails extends Video { | |||
43 | descriptionPath: string | 44 | descriptionPath: string |
44 | channel: VideoChannel | 45 | channel: VideoChannel |
45 | files: VideoFile[] | 46 | files: VideoFile[] |
47 | account: Account | ||
46 | } | 48 | } |