summaryrefslogtreecommitdiff
path: root/vendor/codeberg.org/superseriousbusiness/activity/streams/gen_init.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 /vendor/codeberg.org/superseriousbusiness/activity/streams/gen_init.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 'vendor/codeberg.org/superseriousbusiness/activity/streams/gen_init.go')
-rw-r--r--vendor/codeberg.org/superseriousbusiness/activity/streams/gen_init.go12
1 files changed, 12 insertions, 0 deletions
diff --git a/vendor/codeberg.org/superseriousbusiness/activity/streams/gen_init.go b/vendor/codeberg.org/superseriousbusiness/activity/streams/gen_init.go
index 4b06a5c58..7441fa2db 100644
--- a/vendor/codeberg.org/superseriousbusiness/activity/streams/gen_init.go
+++ b/vendor/codeberg.org/superseriousbusiness/activity/streams/gen_init.go
@@ -135,6 +135,10 @@ import (
typeupdate "codeberg.org/superseriousbusiness/activity/streams/impl/activitystreams/type_update"
typevideo "codeberg.org/superseriousbusiness/activity/streams/impl/activitystreams/type_video"
typeview "codeberg.org/superseriousbusiness/activity/streams/impl/activitystreams/type_view"
+ typealbum "codeberg.org/superseriousbusiness/activity/streams/impl/funkwhale/type_album"
+ typeartist "codeberg.org/superseriousbusiness/activity/streams/impl/funkwhale/type_artist"
+ typelibrary "codeberg.org/superseriousbusiness/activity/streams/impl/funkwhale/type_library"
+ typetrack "codeberg.org/superseriousbusiness/activity/streams/impl/funkwhale/type_track"
propertyalways "codeberg.org/superseriousbusiness/activity/streams/impl/gotosocial/property_always"
propertyapprovalrequired "codeberg.org/superseriousbusiness/activity/streams/impl/gotosocial/property_approvalrequired"
propertyapprovedby "codeberg.org/superseriousbusiness/activity/streams/impl/gotosocial/property_approvedby"
@@ -311,6 +315,10 @@ func init() {
typeupdate.SetManager(mgr)
typevideo.SetManager(mgr)
typeview.SetManager(mgr)
+ typealbum.SetManager(mgr)
+ typeartist.SetManager(mgr)
+ typelibrary.SetManager(mgr)
+ typetrack.SetManager(mgr)
propertyalways.SetManager(mgr)
propertyapprovalrequired.SetManager(mgr)
propertyapprovedby.SetManager(mgr)
@@ -395,6 +403,10 @@ func init() {
typeupdate.SetTypePropertyConstructor(NewJSONLDTypeProperty)
typevideo.SetTypePropertyConstructor(NewJSONLDTypeProperty)
typeview.SetTypePropertyConstructor(NewJSONLDTypeProperty)
+ typealbum.SetTypePropertyConstructor(NewJSONLDTypeProperty)
+ typeartist.SetTypePropertyConstructor(NewJSONLDTypeProperty)
+ typelibrary.SetTypePropertyConstructor(NewJSONLDTypeProperty)
+ typetrack.SetTypePropertyConstructor(NewJSONLDTypeProperty)
typeannounceapproval.SetTypePropertyConstructor(NewJSONLDTypeProperty)
typecanannounce.SetTypePropertyConstructor(NewJSONLDTypeProperty)
typecanlike.SetTypePropertyConstructor(NewJSONLDTypeProperty)