diff options
Diffstat (limited to 'shared/models/activitypub/objects/video-channel-object.ts')
-rw-r--r-- | shared/models/activitypub/objects/video-channel-object.ts | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/shared/models/activitypub/objects/video-channel-object.ts b/shared/models/activitypub/objects/video-channel-object.ts index c9325b5df..dcce8696b 100644 --- a/shared/models/activitypub/objects/video-channel-object.ts +++ b/shared/models/activitypub/objects/video-channel-object.ts | |||
@@ -1,3 +1,5 @@ | |||
1 | import { ActivityPubOrderedCollection } from '../activitypub-ordered-collection' | ||
2 | |||
1 | export interface VideoChannelObject { | 3 | export interface VideoChannelObject { |
2 | type: 'VideoChannel' | 4 | type: 'VideoChannel' |
3 | id: string | 5 | id: string |
@@ -7,4 +9,5 @@ export interface VideoChannelObject { | |||
7 | published: string | 9 | published: string |
8 | updated: string | 10 | updated: string |
9 | actor?: string | 11 | actor?: string |
12 | shares?: ActivityPubOrderedCollection<string> | ||
10 | } | 13 | } |