diff options
author | Chocobozzz <me@florianbigard.com> | 2019-08-30 09:40:21 +0200 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2019-08-30 09:40:32 +0200 |
commit | 0b5c385b4529f3bef8f9523de3f9470ffa58f5f5 (patch) | |
tree | f8110a8fc9aaea1572d75749df15cfd57ce36914 /shared/models | |
parent | 4b1f1b810a50829be8d8998cdd4d296143e34f2e (diff) | |
download | PeerTube-0b5c385b4529f3bef8f9523de3f9470ffa58f5f5.tar.gz PeerTube-0b5c385b4529f3bef8f9523de3f9470ffa58f5f5.tar.zst PeerTube-0b5c385b4529f3bef8f9523de3f9470ffa58f5f5.zip |
Handle reports from mastodon
Diffstat (limited to 'shared/models')
-rw-r--r-- | shared/models/activitypub/activity.ts | 2 | ||||
-rw-r--r-- | shared/models/activitypub/objects/video-abuse-object.ts | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/shared/models/activitypub/activity.ts b/shared/models/activitypub/activity.ts index 95801190d..492b672c7 100644 --- a/shared/models/activitypub/activity.ts +++ b/shared/models/activitypub/activity.ts | |||
@@ -91,5 +91,5 @@ export interface ActivityDislike extends BaseActivity { | |||
91 | export interface ActivityFlag extends BaseActivity { | 91 | export interface ActivityFlag extends BaseActivity { |
92 | type: 'Flag', | 92 | type: 'Flag', |
93 | content: string, | 93 | content: string, |
94 | object: APObject | 94 | object: APObject | APObject[] |
95 | } | 95 | } |
diff --git a/shared/models/activitypub/objects/video-abuse-object.ts b/shared/models/activitypub/objects/video-abuse-object.ts index 40e7abd57..5f1264a76 100644 --- a/shared/models/activitypub/objects/video-abuse-object.ts +++ b/shared/models/activitypub/objects/video-abuse-object.ts | |||
@@ -1,5 +1,5 @@ | |||
1 | export interface VideoAbuseObject { | 1 | export interface VideoAbuseObject { |
2 | type: 'Flag', | 2 | type: 'Flag', |
3 | content: string | 3 | content: string |
4 | object: string | 4 | object: string | string[] |
5 | } | 5 | } |