aboutsummaryrefslogtreecommitdiffhomepage
path: root/shared/models/videos
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2018-04-19 14:52:10 +0200
committerChocobozzz <me@florianbigard.com>2018-04-19 14:52:10 +0200
commit2243730c8edf210c0a3ffc161bac89785f6a52f0 (patch)
tree5ff532942876f7828a668399b279e37d80f36ae5 /shared/models/videos
parent41f657c570472d0f96aece3234497f83b760dfa0 (diff)
downloadPeerTube-2243730c8edf210c0a3ffc161bac89785f6a52f0.tar.gz
PeerTube-2243730c8edf210c0a3ffc161bac89785f6a52f0.tar.zst
PeerTube-2243730c8edf210c0a3ffc161bac89785f6a52f0.zip
Add information concerning video privacy in my videos list
Diffstat (limited to 'shared/models/videos')
-rw-r--r--shared/models/videos/video.model.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/shared/models/videos/video.model.ts b/shared/models/videos/video.model.ts
index 1b5f1a09c..70132c050 100644
--- a/shared/models/videos/video.model.ts
+++ b/shared/models/videos/video.model.ts
@@ -26,6 +26,7 @@ export interface Video {
26 category: VideoConstant<number> 26 category: VideoConstant<number>
27 licence: VideoConstant<number> 27 licence: VideoConstant<number>
28 language: VideoConstant<number> 28 language: VideoConstant<number>
29 privacy: VideoConstant<VideoPrivacy>
29 description: string 30 description: string
30 duration: number 31 duration: number
31 isLocal: boolean 32 isLocal: boolean
@@ -48,7 +49,6 @@ export interface Video {
48} 49}
49 50
50export interface VideoDetails extends Video { 51export interface VideoDetails extends Video {
51 privacy: VideoConstant<VideoPrivacy>
52 descriptionPath: string 52 descriptionPath: string
53 support: string 53 support: string
54 channel: VideoChannel 54 channel: VideoChannel