diff options
Diffstat (limited to 'vendor/github.com/superseriousbusiness/activity/streams/gen_init.go')
-rw-r--r-- | vendor/github.com/superseriousbusiness/activity/streams/gen_init.go | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/vendor/github.com/superseriousbusiness/activity/streams/gen_init.go b/vendor/github.com/superseriousbusiness/activity/streams/gen_init.go index b481c6629..e7d130fea 100644 --- a/vendor/github.com/superseriousbusiness/activity/streams/gen_init.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/gen_init.go @@ -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) |