summaryrefslogtreecommitdiff
path: root/internal/ap/activitystreams.go
diff options
context:
space:
mode:
authorLibravatar tobi <31960611+tsmethurst@users.noreply.github.com>2025-03-24 11:56:42 +0100
committerLibravatar GitHub <noreply@github.com>2025-03-24 10:56:42 +0000
commit27171a78ded38a7142aecfcaa75ede86f73b7a5b (patch)
tree6468899981ba4f6fd78cd95544ed1ded34120437 /internal/ap/activitystreams.go
parent[chore]: Bump github.com/golang-jwt/jwt/v5 from 5.2.1 to 5.2.2 (#3927) (diff)
downloadgotosocial-27171a78ded38a7142aecfcaa75ede86f73b7a5b.tar.xz
[feature] Parse funkwhale `Album` as Statusable to allow barebones interacting with bandwagon (#3931)
* bump activity version * parse funkwhale / bandwagon album as statusable
Diffstat (limited to 'internal/ap/activitystreams.go')
-rw-r--r--internal/ap/activitystreams.go9
1 files changed, 8 insertions, 1 deletions
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).