diff options
| author | 2025-04-24 11:20:03 +0200 | |
|---|---|---|
| committer | 2025-04-24 11:20:03 +0200 | |
| commit | 68ed7aba25e294bf36a4ce0f77e3e6f3fcb4c963 (patch) | |
| tree | 1441e696d3cdd45596db75df46aeb88f2201a371 /vendor/codeberg.org/superseriousbusiness/activity/streams/gen_resolver_utils.go | |
| parent | [docs] Mention where to run the command to grant CREATE permissions (#4050) (diff) | |
| download | gotosocial-68ed7aba25e294bf36a4ce0f77e3e6f3fcb4c963.tar.xz | |
[chore] Update `activity` to v1.14.0 (#4038)
Diffstat (limited to 'vendor/codeberg.org/superseriousbusiness/activity/streams/gen_resolver_utils.go')
| -rw-r--r-- | vendor/codeberg.org/superseriousbusiness/activity/streams/gen_resolver_utils.go | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/vendor/codeberg.org/superseriousbusiness/activity/streams/gen_resolver_utils.go b/vendor/codeberg.org/superseriousbusiness/activity/streams/gen_resolver_utils.go index 6e90035e7..7ff667f0e 100644 --- a/vendor/codeberg.org/superseriousbusiness/activity/streams/gen_resolver_utils.go +++ b/vendor/codeberg.org/superseriousbusiness/activity/streams/gen_resolver_utils.go @@ -64,6 +64,12 @@ func ToType(c context.Context, m map[string]interface{}) (t vocab.Type, err erro }, func(ctx context.Context, i vocab.GoToSocialAnnounceApproval) error { t = i return nil + }, func(ctx context.Context, i vocab.GoToSocialAnnounceAuthorization) error { + t = i + return nil + }, func(ctx context.Context, i vocab.GoToSocialAnnounceRequest) error { + t = i + return nil }, func(ctx context.Context, i vocab.ActivityStreamsApplication) error { t = i return nil @@ -88,6 +94,9 @@ func ToType(c context.Context, m map[string]interface{}) (t vocab.Type, err erro }, func(ctx context.Context, i vocab.GoToSocialCanLike) error { t = i return nil + }, func(ctx context.Context, i vocab.GoToSocialCanQuote) error { + t = i + return nil }, func(ctx context.Context, i vocab.GoToSocialCanReply) error { t = i return nil @@ -163,6 +172,12 @@ func ToType(c context.Context, m map[string]interface{}) (t vocab.Type, err erro }, func(ctx context.Context, i vocab.GoToSocialLikeApproval) error { t = i return nil + }, func(ctx context.Context, i vocab.GoToSocialLikeAuthorization) error { + t = i + return nil + }, func(ctx context.Context, i vocab.GoToSocialLikeRequest) error { + t = i + return nil }, func(ctx context.Context, i vocab.ActivityStreamsLink) error { t = i return nil @@ -229,6 +244,12 @@ func ToType(c context.Context, m map[string]interface{}) (t vocab.Type, err erro }, func(ctx context.Context, i vocab.GoToSocialReplyApproval) error { t = i return nil + }, func(ctx context.Context, i vocab.GoToSocialReplyAuthorization) error { + t = i + return nil + }, func(ctx context.Context, i vocab.GoToSocialReplyRequest) error { + t = i + return nil }, func(ctx context.Context, i vocab.ActivityStreamsService) error { t = i return nil |
