aboutsummaryrefslogtreecommitdiffhomepage
path: root/shared/models/activitypub/objects/video-torrent-object.ts
diff options
context:
space:
mode:
Diffstat (limited to 'shared/models/activitypub/objects/video-torrent-object.ts')
-rw-r--r--shared/models/activitypub/objects/video-torrent-object.ts5
1 files changed, 4 insertions, 1 deletions
diff --git a/shared/models/activitypub/objects/video-torrent-object.ts b/shared/models/activitypub/objects/video-torrent-object.ts
index 11de8fc56..5b035a371 100644
--- a/shared/models/activitypub/objects/video-torrent-object.ts
+++ b/shared/models/activitypub/objects/video-torrent-object.ts
@@ -7,7 +7,7 @@ import {
7} from './common-objects' 7} from './common-objects'
8import { VideoState } from '../../videos' 8import { VideoState } from '../../videos'
9 9
10export interface VideoTorrentObject { 10export interface VideoObject {
11 type: 'Video' 11 type: 'Video'
12 id: string 12 id: string
13 name: string 13 name: string
@@ -19,7 +19,10 @@ export interface VideoTorrentObject {
19 language: ActivityIdentifierObject 19 language: ActivityIdentifierObject
20 subtitleLanguage: ActivityIdentifierObject[] 20 subtitleLanguage: ActivityIdentifierObject[]
21 views: number 21 views: number
22
22 sensitive: boolean 23 sensitive: boolean
24 isLiveBroadcast: boolean
25
23 commentsEnabled: boolean 26 commentsEnabled: boolean
24 downloadEnabled: boolean 27 downloadEnabled: boolean
25 waitTranscoding: boolean 28 waitTranscoding: boolean