mirror of
https://github.com/superseriousbusiness/gotosocial.git
synced 2025-11-11 02:57:29 -06:00
[chore] upstep activity to v1.7.0-gts (#3074)
This commit is contained in:
parent
49009fbd8f
commit
1a66ea8998
96 changed files with 8362 additions and 4 deletions
26
vendor/github.com/superseriousbusiness/activity/streams/gen_init.go
generated
vendored
26
vendor/github.com/superseriousbusiness/activity/streams/gen_init.go
generated
vendored
|
|
@ -135,6 +135,17 @@ import (
|
|||
typeupdate "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_update"
|
||||
typevideo "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_video"
|
||||
typeview "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_view"
|
||||
propertyalways "github.com/superseriousbusiness/activity/streams/impl/gotosocial/property_always"
|
||||
propertyapprovalrequired "github.com/superseriousbusiness/activity/streams/impl/gotosocial/property_approvalrequired"
|
||||
propertyapprovedby "github.com/superseriousbusiness/activity/streams/impl/gotosocial/property_approvedby"
|
||||
propertycanannounce "github.com/superseriousbusiness/activity/streams/impl/gotosocial/property_canannounce"
|
||||
propertycanlike "github.com/superseriousbusiness/activity/streams/impl/gotosocial/property_canlike"
|
||||
propertycanreply "github.com/superseriousbusiness/activity/streams/impl/gotosocial/property_canreply"
|
||||
propertyinteractionpolicy "github.com/superseriousbusiness/activity/streams/impl/gotosocial/property_interactionpolicy"
|
||||
typecanannounce "github.com/superseriousbusiness/activity/streams/impl/gotosocial/type_canannounce"
|
||||
typecanlike "github.com/superseriousbusiness/activity/streams/impl/gotosocial/type_canlike"
|
||||
typecanreply "github.com/superseriousbusiness/activity/streams/impl/gotosocial/type_canreply"
|
||||
typeinteractionpolicy "github.com/superseriousbusiness/activity/streams/impl/gotosocial/type_interactionpolicy"
|
||||
propertyvalue "github.com/superseriousbusiness/activity/streams/impl/schema/property_value"
|
||||
typepropertyvalue "github.com/superseriousbusiness/activity/streams/impl/schema/type_propertyvalue"
|
||||
propertyblurhash "github.com/superseriousbusiness/activity/streams/impl/toot/property_blurhash"
|
||||
|
|
@ -297,6 +308,17 @@ func init() {
|
|||
typeupdate.SetManager(mgr)
|
||||
typevideo.SetManager(mgr)
|
||||
typeview.SetManager(mgr)
|
||||
propertyalways.SetManager(mgr)
|
||||
propertyapprovalrequired.SetManager(mgr)
|
||||
propertyapprovedby.SetManager(mgr)
|
||||
propertycanannounce.SetManager(mgr)
|
||||
propertycanlike.SetManager(mgr)
|
||||
propertycanreply.SetManager(mgr)
|
||||
propertyinteractionpolicy.SetManager(mgr)
|
||||
typecanannounce.SetManager(mgr)
|
||||
typecanlike.SetManager(mgr)
|
||||
typecanreply.SetManager(mgr)
|
||||
typeinteractionpolicy.SetManager(mgr)
|
||||
propertyvalue.SetManager(mgr)
|
||||
typepropertyvalue.SetManager(mgr)
|
||||
propertyblurhash.SetManager(mgr)
|
||||
|
|
@ -367,6 +389,10 @@ func init() {
|
|||
typeupdate.SetTypePropertyConstructor(NewJSONLDTypeProperty)
|
||||
typevideo.SetTypePropertyConstructor(NewJSONLDTypeProperty)
|
||||
typeview.SetTypePropertyConstructor(NewJSONLDTypeProperty)
|
||||
typecanannounce.SetTypePropertyConstructor(NewJSONLDTypeProperty)
|
||||
typecanlike.SetTypePropertyConstructor(NewJSONLDTypeProperty)
|
||||
typecanreply.SetTypePropertyConstructor(NewJSONLDTypeProperty)
|
||||
typeinteractionpolicy.SetTypePropertyConstructor(NewJSONLDTypeProperty)
|
||||
typepropertyvalue.SetTypePropertyConstructor(NewJSONLDTypeProperty)
|
||||
typeemoji.SetTypePropertyConstructor(NewJSONLDTypeProperty)
|
||||
typehashtag.SetTypePropertyConstructor(NewJSONLDTypeProperty)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue