diff options
Diffstat (limited to 'shared')
-rw-r--r-- | shared/models/activitypub/activity.ts | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/shared/models/activitypub/activity.ts b/shared/models/activitypub/activity.ts index 48b52d2cb..a87afc548 100644 --- a/shared/models/activitypub/activity.ts +++ b/shared/models/activitypub/activity.ts | |||
@@ -1,3 +1,4 @@ | |||
1 | import { ActivityPubActor } from './activitypub-actor' | ||
1 | import { ActivityPubSignature } from './activitypub-signature' | 2 | import { ActivityPubSignature } from './activitypub-signature' |
2 | import { VideoTorrentObject } from './objects' | 3 | import { VideoTorrentObject } from './objects' |
3 | import { DislikeObject } from './objects/dislike-object' | 4 | import { DislikeObject } from './objects/dislike-object' |
@@ -33,7 +34,7 @@ export interface ActivityCreate extends BaseActivity { | |||
33 | 34 | ||
34 | export interface ActivityUpdate extends BaseActivity { | 35 | export interface ActivityUpdate extends BaseActivity { |
35 | type: 'Update' | 36 | type: 'Update' |
36 | object: VideoTorrentObject | 37 | object: VideoTorrentObject | ActivityPubActor |
37 | } | 38 | } |
38 | 39 | ||
39 | export interface ActivityDelete extends BaseActivity { | 40 | export interface ActivityDelete extends BaseActivity { |