From fd45e8f43c2638478599ca75632518054461da85 Mon Sep 17 00:00:00 2001 From: Chocobozzz Date: Tue, 31 Oct 2017 11:52:52 +0100 Subject: Add video privacy setting --- shared/models/videos/video.model.ts | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'shared/models/videos/video.model.ts') diff --git a/shared/models/videos/video.model.ts b/shared/models/videos/video.model.ts index 1490d345c..2f4ee2462 100644 --- a/shared/models/videos/video.model.ts +++ b/shared/models/videos/video.model.ts @@ -1,4 +1,5 @@ import { VideoChannel } from './video-channel.model' +import { VideoPrivacy } from './video-privacy.enum' export interface VideoFile { magnetUri: string @@ -37,7 +38,9 @@ export interface Video { } export interface VideoDetails extends Video { - descriptionPath: string, + privacy: VideoPrivacy + privacyLabel: string + descriptionPath: string channel: VideoChannel files: VideoFile[] } -- cgit v1.2.3