diff options
Diffstat (limited to 'shared/models/activitypub')
-rw-r--r-- | shared/models/activitypub/activity.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/shared/models/activitypub/activity.ts b/shared/models/activitypub/activity.ts index f8e982fbb..6a05a1c39 100644 --- a/shared/models/activitypub/activity.ts +++ b/shared/models/activitypub/activity.ts | |||
@@ -11,10 +11,10 @@ export type ActivityType = 'Create' | 'Add' | 'Update' | 'Flag' | 'Delete' | 'Fo | |||
11 | export interface BaseActivity { | 11 | export interface BaseActivity { |
12 | '@context'?: any[] | 12 | '@context'?: any[] |
13 | id: string | 13 | id: string |
14 | to: string[] | 14 | to?: string[] |
15 | actor: string | 15 | actor: string |
16 | type: ActivityType | 16 | type: ActivityType |
17 | signature: ActivityPubSignature | 17 | signature?: ActivityPubSignature |
18 | } | 18 | } |
19 | 19 | ||
20 | export interface ActivityCreate extends BaseActivity { | 20 | export interface ActivityCreate extends BaseActivity { |