diff options
author | Chocobozzz <me@florianbigard.com> | 2018-08-13 16:57:13 +0200 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2018-08-14 09:27:18 +0200 |
commit | 26b7305a232e547709f433a6edf700bf495935d8 (patch) | |
tree | b5676090c61df72f864735bcc881d5ee256cffbd /shared/models/videos/video.model.ts | |
parent | efc9e8450a8bbeeef9cd18e3ad6037abc0f815c3 (diff) | |
download | PeerTube-26b7305a232e547709f433a6edf700bf495935d8.tar.gz PeerTube-26b7305a232e547709f433a6edf700bf495935d8.tar.zst PeerTube-26b7305a232e547709f433a6edf700bf495935d8.zip |
Add blacklist reason field
Diffstat (limited to 'shared/models/videos/video.model.ts')
-rw-r--r-- | shared/models/videos/video.model.ts | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/shared/models/videos/video.model.ts b/shared/models/videos/video.model.ts index f7bbaac76..8dfa96069 100644 --- a/shared/models/videos/video.model.ts +++ b/shared/models/videos/video.model.ts | |||
@@ -43,6 +43,9 @@ export interface Video { | |||
43 | state?: VideoConstant<VideoState> | 43 | state?: VideoConstant<VideoState> |
44 | scheduledUpdate?: VideoScheduleUpdate | 44 | scheduledUpdate?: VideoScheduleUpdate |
45 | 45 | ||
46 | blacklisted?: boolean | ||
47 | blacklistedReason?: string | ||
48 | |||
46 | account: { | 49 | account: { |
47 | id: number | 50 | id: number |
48 | uuid: string | 51 | uuid: string |