aboutsummaryrefslogtreecommitdiffhomepage
path: root/shared/models
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2017-12-14 10:07:57 +0100
committerChocobozzz <me@florianbigard.com>2017-12-14 10:07:57 +0100
commitd48ff09d27d234425c3e9f091ae9072d8e6d8b7a (patch)
tree3a842b79aec40ca55d68c1cb6cf9b8aadcf2a1d1 /shared/models
parent94edfc3b2a9cf83f1c9c470a76e4769bc37aad14 (diff)
downloadPeerTube-d48ff09d27d234425c3e9f091ae9072d8e6d8b7a.tar.gz
PeerTube-d48ff09d27d234425c3e9f091ae9072d8e6d8b7a.tar.zst
PeerTube-d48ff09d27d234425c3e9f091ae9072d8e6d8b7a.zip
Use sequelize scopes
Diffstat (limited to 'shared/models')
-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 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}