aboutsummaryrefslogtreecommitdiffhomepage
path: root/shared/models/activitypub
diff options
context:
space:
mode:
Diffstat (limited to 'shared/models/activitypub')
-rw-r--r--shared/models/activitypub/objects/video-torrent-object.ts3
1 files changed, 3 insertions, 0 deletions
diff --git a/shared/models/activitypub/objects/video-torrent-object.ts b/shared/models/activitypub/objects/video-torrent-object.ts
index 767b6a2d0..c4071a6d9 100644
--- a/shared/models/activitypub/objects/video-torrent-object.ts
+++ b/shared/models/activitypub/objects/video-torrent-object.ts
@@ -5,6 +5,7 @@ import {
5 ActivityUrlObject 5 ActivityUrlObject
6} from './common-objects' 6} from './common-objects'
7import { ActivityPubOrderedCollection } from '../activitypub-ordered-collection' 7import { ActivityPubOrderedCollection } from '../activitypub-ordered-collection'
8import { VideoState } from '../../videos'
8 9
9export interface VideoTorrentObject { 10export interface VideoTorrentObject {
10 type: 'Video' 11 type: 'Video'
@@ -19,6 +20,8 @@ export interface VideoTorrentObject {
19 views: number 20 views: number
20 sensitive: boolean 21 sensitive: boolean
21 commentsEnabled: boolean 22 commentsEnabled: boolean
23 waitTranscoding: boolean
24 state: VideoState
22 published: string 25 published: string
23 updated: string 26 updated: string
24 mediaType: 'text/markdown' 27 mediaType: 'text/markdown'