From 27171a78ded38a7142aecfcaa75ede86f73b7a5b Mon Sep 17 00:00:00 2001 From: tobi <31960611+tsmethurst@users.noreply.github.com> Date: Mon, 24 Mar 2025 11:56:42 +0100 Subject: [feature] Parse funkwhale `Album` as Statusable to allow barebones interacting with bandwagon (#3931) * bump activity version * parse funkwhale / bandwagon album as statusable --- internal/ap/activitystreams.go | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) (limited to 'internal/ap/activitystreams.go') diff --git a/internal/ap/activitystreams.go b/internal/ap/activitystreams.go index a185edabe..0d1bc62c9 100644 --- a/internal/ap/activitystreams.go +++ b/internal/ap/activitystreams.go @@ -98,10 +98,17 @@ const ( // that we don't *yet* know what type of Object something is. ObjectUnknown = "Unknown" - // Extensions and unofficial additions. + /* Extensions and unofficial additions */ + + /* GtS stuff */ + ObjectLikeApproval = "LikeApproval" ObjectReplyApproval = "ReplyApproval" ObjectAnnounceApproval = "AnnounceApproval" + + /* Funkwhale stuff */ + + ObjectAlbum = "Album" ) // isActivity returns whether AS type name is of an Activity (NOT IntransitiveActivity). -- cgit v1.2.3