this repo has no description
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

handlergen

+4 -4
+2 -2
generated/handlers/feedgetactorposts.go
··· 10 10 ) 11 11 12 12 type FeedGetActorPostsInput struct { 13 - Actor string `query:"actor"` 13 + Actor string `query:"actor"` 14 14 Cursor *string `query:"cursor"` 15 - Limit *int64 `query:"limit"` 15 + Limit *int64 `query:"limit"` 16 16 } 17 17 18 18 func (h *Handlers) HandleFeedGetActorPosts(e echo.Context) error {
+2 -2
generated/handlers/handlers.go
··· 18 18 ActorGetProfileRequiresAuth() bool 19 19 HandleActorGetProfiles(e echo.Context, input *ActorGetProfilesInput) (*vylet.ActorGetProfiles_Output, *echo.HTTPError) 20 20 ActorGetProfilesRequiresAuth() bool 21 + HandleFeedGetActorPosts(e echo.Context, input *FeedGetActorPostsInput) (*vylet.FeedGetActorPosts_Output, *echo.HTTPError) 22 + FeedGetActorPostsRequiresAuth() bool 21 23 HandleFeedGetPosts(e echo.Context, input *FeedGetPostsInput) (*vylet.FeedGetPosts_Output, *echo.HTTPError) 22 24 FeedGetPostsRequiresAuth() bool 23 25 HandleFeedGetSubjectLikes(e echo.Context, input *FeedGetSubjectLikesInput) (*vylet.FeedGetSubjectLikes_Output, *echo.HTTPError) 24 26 FeedGetSubjectLikesRequiresAuth() bool 25 - HandleFeedGetActorPosts(e echo.Context, input *FeedGetActorPostsInput) (*vylet.FeedGetActorPosts_Output, *echo.HTTPError) 26 - FeedGetActorPostsRequiresAuth() bool 27 27 } 28 28 29 29 type Handlers struct {