refactor(components): ⚰️ remove unused parameters

master
Xeronith 2023-06-26 11:21:49 +03:30
rodzic ea5083def7
commit 79e679ac20
19 zmienionych plików z 0 dodań i 19 usunięć

Wyświetl plik

@ -34,7 +34,6 @@ func (handler *authorizeInteractionHandler) HandlerFunc() HttpHandlerFunc {
}
return pipeline.Handle(x,
"authorize_interaction",
AUTHORIZE_INTERACTION_REQUEST,
AUTHORIZE_INTERACTION_RESULT,
request, result,

Wyświetl plik

@ -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,

Wyświetl plik

@ -33,7 +33,6 @@ func (handler *echoHandler) HandlerFunc() HttpHandlerFunc {
}
return pipeline.Handle(x,
"echo",
ECHO_REQUEST,
ECHO_RESULT,
request, result,

Wyświetl plik

@ -35,7 +35,6 @@ func (handler *followActorHandler) HandlerFunc() HttpHandlerFunc {
}
if err := pipeline.Handle(x,
"follow_actor",
FOLLOW_ACTOR_REQUEST,
FOLLOW_ACTOR_RESULT,
request, result,

Wyświetl plik

@ -34,7 +34,6 @@ func (handler *getActorHandler) HandlerFunc() HttpHandlerFunc {
}
return pipeline.Handle(x,
"get_actor",
GET_ACTOR_REQUEST,
GET_ACTOR_RESULT,
request, result,

Wyświetl plik

@ -34,7 +34,6 @@ func (handler *getFollowersHandler) HandlerFunc() HttpHandlerFunc {
}
return pipeline.Handle(x,
"get_followers",
GET_FOLLOWERS_REQUEST,
GET_FOLLOWERS_RESULT,
request, result,

Wyświetl plik

@ -34,7 +34,6 @@ func (handler *getFollowingHandler) HandlerFunc() HttpHandlerFunc {
}
return pipeline.Handle(x,
"get_following",
GET_FOLLOWING_REQUEST,
GET_FOLLOWING_RESULT,
request, result,

Wyświetl plik

@ -34,7 +34,6 @@ func (handler *getInboxHandler) HandlerFunc() HttpHandlerFunc {
}
return pipeline.Handle(x,
"get_inbox",
GET_INBOX_REQUEST,
GET_INBOX_RESULT,
request, result,

Wyświetl plik

@ -34,7 +34,6 @@ func (handler *getOutboxHandler) HandlerFunc() HttpHandlerFunc {
}
return pipeline.Handle(x,
"get_outbox",
GET_OUTBOX_REQUEST,
GET_OUTBOX_RESULT,
request, result,

Wyświetl plik

@ -37,7 +37,6 @@ func (handler *getPackagesHandler) HandlerFunc() HttpHandlerFunc {
}
return pipeline.Handle(x,
"get_packages",
GET_PACKAGES_REQUEST,
GET_PACKAGES_RESULT,
request, result,

Wyświetl plik

@ -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,

Wyświetl plik

@ -33,7 +33,6 @@ func (handler *loginHandler) HandlerFunc() HttpHandlerFunc {
}
return pipeline.Handle(x,
"login",
LOGIN_REQUEST,
LOGIN_RESULT,
request, result,

Wyświetl plik

@ -33,7 +33,6 @@ func (handler *logoutHandler) HandlerFunc() HttpHandlerFunc {
}
return pipeline.Handle(x,
"logout",
LOGOUT_REQUEST,
LOGOUT_RESULT,
request, result,

Wyświetl plik

@ -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,

Wyświetl plik

@ -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,

Wyświetl plik

@ -33,7 +33,6 @@ func (handler *signupHandler) HandlerFunc() HttpHandlerFunc {
}
return pipeline.Handle(x,
"signup",
SIGNUP_REQUEST,
SIGNUP_RESULT,
request, result,

Wyświetl plik

@ -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,

Wyświetl plik

@ -33,7 +33,6 @@ func (handler *verifyHandler) HandlerFunc() HttpHandlerFunc {
}
return pipeline.Handle(x,
"verify",
VERIFY_REQUEST,
VERIFY_RESULT,
request, result,

Wyświetl plik

@ -34,7 +34,6 @@ func (handler *webfingerHandler) HandlerFunc() HttpHandlerFunc {
}
return pipeline.Handle(x,
"webfinger",
WEBFINGER_REQUEST,
WEBFINGER_RESULT,
request, result,