diff options
Diffstat (limited to 'internal/ap/activitystreams.go')
-rw-r--r-- | internal/ap/activitystreams.go | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/internal/ap/activitystreams.go b/internal/ap/activitystreams.go index 50955ce2c..3851d0efb 100644 --- a/internal/ap/activitystreams.go +++ b/internal/ap/activitystreams.go @@ -97,6 +97,11 @@ const ( // Not in the AS spec, just used internally to indicate // that we don't *yet* know what type of Object something is. ObjectUnknown = "Unknown" + + // Extensions and unofficial additions. + ObjectLikeApproval = "LikeApproval" + ObjectReplyApproval = "ReplyApproval" + ObjectAnnounceApproval = "AnnounceApproval" ) // isActivity returns whether AS type name is of an Activity (NOT IntransitiveActivity). |