diff --git a/components/api/handlers/authorize_interaction_handler.go b/components/api/handlers/authorize_interaction_handler.go index 94f2163..e6c7ee3 100644 --- a/components/api/handlers/authorize_interaction_handler.go +++ b/components/api/handlers/authorize_interaction_handler.go @@ -34,7 +34,6 @@ func (handler *authorizeInteractionHandler) HandlerFunc() HttpHandlerFunc { } return pipeline.Handle(x, - "authorize_interaction", AUTHORIZE_INTERACTION_REQUEST, AUTHORIZE_INTERACTION_RESULT, request, result, diff --git a/components/api/handlers/check_username_availability_handler.go b/components/api/handlers/check_username_availability_handler.go index 64cf692..2dcc9d7 100644 --- a/components/api/handlers/check_username_availability_handler.go +++ b/components/api/handlers/check_username_availability_handler.go @@ -33,7 +33,6 @@ func (handler *checkUsernameAvailabilityHandler) HandlerFunc() HttpHandlerFunc { } return pipeline.Handle(x, - "check_username_availability", CHECK_USERNAME_AVAILABILITY_REQUEST, CHECK_USERNAME_AVAILABILITY_RESULT, request, result, diff --git a/components/api/handlers/echo_handler.go b/components/api/handlers/echo_handler.go index 0c4a3a1..a0b9869 100644 --- a/components/api/handlers/echo_handler.go +++ b/components/api/handlers/echo_handler.go @@ -33,7 +33,6 @@ func (handler *echoHandler) HandlerFunc() HttpHandlerFunc { } return pipeline.Handle(x, - "echo", ECHO_REQUEST, ECHO_RESULT, request, result, diff --git a/components/api/handlers/follow_actor_handler.go b/components/api/handlers/follow_actor_handler.go index d950b9c..297905e 100644 --- a/components/api/handlers/follow_actor_handler.go +++ b/components/api/handlers/follow_actor_handler.go @@ -35,7 +35,6 @@ func (handler *followActorHandler) HandlerFunc() HttpHandlerFunc { } if err := pipeline.Handle(x, - "follow_actor", FOLLOW_ACTOR_REQUEST, FOLLOW_ACTOR_RESULT, request, result, diff --git a/components/api/handlers/get_actor_handler.go b/components/api/handlers/get_actor_handler.go index e4e695b..7932f3d 100644 --- a/components/api/handlers/get_actor_handler.go +++ b/components/api/handlers/get_actor_handler.go @@ -34,7 +34,6 @@ func (handler *getActorHandler) HandlerFunc() HttpHandlerFunc { } return pipeline.Handle(x, - "get_actor", GET_ACTOR_REQUEST, GET_ACTOR_RESULT, request, result, diff --git a/components/api/handlers/get_followers_handler.go b/components/api/handlers/get_followers_handler.go index 2b7bd50..72978d1 100644 --- a/components/api/handlers/get_followers_handler.go +++ b/components/api/handlers/get_followers_handler.go @@ -34,7 +34,6 @@ func (handler *getFollowersHandler) HandlerFunc() HttpHandlerFunc { } return pipeline.Handle(x, - "get_followers", GET_FOLLOWERS_REQUEST, GET_FOLLOWERS_RESULT, request, result, diff --git a/components/api/handlers/get_following_handler.go b/components/api/handlers/get_following_handler.go index f328d2b..5817735 100644 --- a/components/api/handlers/get_following_handler.go +++ b/components/api/handlers/get_following_handler.go @@ -34,7 +34,6 @@ func (handler *getFollowingHandler) HandlerFunc() HttpHandlerFunc { } return pipeline.Handle(x, - "get_following", GET_FOLLOWING_REQUEST, GET_FOLLOWING_RESULT, request, result, diff --git a/components/api/handlers/get_inbox_handler.go b/components/api/handlers/get_inbox_handler.go index 7a8644a..0fa1ef0 100644 --- a/components/api/handlers/get_inbox_handler.go +++ b/components/api/handlers/get_inbox_handler.go @@ -34,7 +34,6 @@ func (handler *getInboxHandler) HandlerFunc() HttpHandlerFunc { } return pipeline.Handle(x, - "get_inbox", GET_INBOX_REQUEST, GET_INBOX_RESULT, request, result, diff --git a/components/api/handlers/get_outbox_handler.go b/components/api/handlers/get_outbox_handler.go index fbe64d4..0b7038b 100644 --- a/components/api/handlers/get_outbox_handler.go +++ b/components/api/handlers/get_outbox_handler.go @@ -34,7 +34,6 @@ func (handler *getOutboxHandler) HandlerFunc() HttpHandlerFunc { } return pipeline.Handle(x, - "get_outbox", GET_OUTBOX_REQUEST, GET_OUTBOX_RESULT, request, result, diff --git a/components/api/handlers/get_packages_handler.go b/components/api/handlers/get_packages_handler.go index e101ebc..d757055 100644 --- a/components/api/handlers/get_packages_handler.go +++ b/components/api/handlers/get_packages_handler.go @@ -37,7 +37,6 @@ func (handler *getPackagesHandler) HandlerFunc() HttpHandlerFunc { } return pipeline.Handle(x, - "get_packages", GET_PACKAGES_REQUEST, GET_PACKAGES_RESULT, request, result, diff --git a/components/api/handlers/get_profile_by_user_handler.go b/components/api/handlers/get_profile_by_user_handler.go index 4809d0a..9e1eff7 100644 --- a/components/api/handlers/get_profile_by_user_handler.go +++ b/components/api/handlers/get_profile_by_user_handler.go @@ -33,7 +33,6 @@ func (handler *getProfileByUserHandler) HandlerFunc() HttpHandlerFunc { } return pipeline.Handle(x, - "get_profile_by_user", GET_PROFILE_BY_USER_REQUEST, GET_PROFILE_BY_USER_RESULT, request, result, diff --git a/components/api/handlers/login_handler.go b/components/api/handlers/login_handler.go index 1e38841..e7ec7f6 100644 --- a/components/api/handlers/login_handler.go +++ b/components/api/handlers/login_handler.go @@ -33,7 +33,6 @@ func (handler *loginHandler) HandlerFunc() HttpHandlerFunc { } return pipeline.Handle(x, - "login", LOGIN_REQUEST, LOGIN_RESULT, request, result, diff --git a/components/api/handlers/logout_handler.go b/components/api/handlers/logout_handler.go index 809d604..317264a 100644 --- a/components/api/handlers/logout_handler.go +++ b/components/api/handlers/logout_handler.go @@ -33,7 +33,6 @@ func (handler *logoutHandler) HandlerFunc() HttpHandlerFunc { } return pipeline.Handle(x, - "logout", LOGOUT_REQUEST, LOGOUT_RESULT, request, result, diff --git a/components/api/handlers/post_to_inbox_handler.go b/components/api/handlers/post_to_inbox_handler.go index 00930ac..bd1c509 100644 --- a/components/api/handlers/post_to_inbox_handler.go +++ b/components/api/handlers/post_to_inbox_handler.go @@ -38,7 +38,6 @@ func (handler *postToInboxHandler) HandlerFunc() HttpHandlerFunc { } return pipeline.Handle(x, - "post_to_inbox", POST_TO_INBOX_REQUEST, POST_TO_INBOX_RESULT, request, result, diff --git a/components/api/handlers/post_to_outbox_handler.go b/components/api/handlers/post_to_outbox_handler.go index b532de0..f7538c9 100644 --- a/components/api/handlers/post_to_outbox_handler.go +++ b/components/api/handlers/post_to_outbox_handler.go @@ -38,7 +38,6 @@ func (handler *postToOutboxHandler) HandlerFunc() HttpHandlerFunc { } return pipeline.Handle(x, - "post_to_outbox", POST_TO_OUTBOX_REQUEST, POST_TO_OUTBOX_RESULT, request, result, diff --git a/components/api/handlers/signup_handler.go b/components/api/handlers/signup_handler.go index 7e72577..14c273a 100644 --- a/components/api/handlers/signup_handler.go +++ b/components/api/handlers/signup_handler.go @@ -33,7 +33,6 @@ func (handler *signupHandler) HandlerFunc() HttpHandlerFunc { } return pipeline.Handle(x, - "signup", SIGNUP_REQUEST, SIGNUP_RESULT, request, result, diff --git a/components/api/handlers/update_profile_by_user_handler.go b/components/api/handlers/update_profile_by_user_handler.go index b1e9a07..a704222 100644 --- a/components/api/handlers/update_profile_by_user_handler.go +++ b/components/api/handlers/update_profile_by_user_handler.go @@ -33,7 +33,6 @@ func (handler *updateProfileByUserHandler) HandlerFunc() HttpHandlerFunc { } return pipeline.Handle(x, - "update_profile_by_user", UPDATE_PROFILE_BY_USER_REQUEST, UPDATE_PROFILE_BY_USER_RESULT, request, result, diff --git a/components/api/handlers/verify_handler.go b/components/api/handlers/verify_handler.go index e72276c..c7d08e3 100644 --- a/components/api/handlers/verify_handler.go +++ b/components/api/handlers/verify_handler.go @@ -33,7 +33,6 @@ func (handler *verifyHandler) HandlerFunc() HttpHandlerFunc { } return pipeline.Handle(x, - "verify", VERIFY_REQUEST, VERIFY_RESULT, request, result, diff --git a/components/api/handlers/webfinger_handler.go b/components/api/handlers/webfinger_handler.go index 438bf6f..c57dfa4 100644 --- a/components/api/handlers/webfinger_handler.go +++ b/components/api/handlers/webfinger_handler.go @@ -34,7 +34,6 @@ func (handler *webfingerHandler) HandlerFunc() HttpHandlerFunc { } return pipeline.Handle(x, - "webfinger", WEBFINGER_REQUEST, WEBFINGER_RESULT, request, result,