Remove unuused parameters
This commit removes names for unusued parameters where they are no longer needed.
This commit is contained in:
parent
b45233b87c
commit
8ad8cf7994
24 changed files with 30 additions and 30 deletions
|
|
@ -240,7 +240,7 @@ func (auth *Auth) authLogin(ctx context.Context) http.Handler {
|
|||
}
|
||||
|
||||
// authLogout implements the authLogout view to logout a user
|
||||
func (auth *Auth) authLogout(ctx context.Context) http.Handler {
|
||||
func (auth *Auth) authLogout(context.Context) http.Handler {
|
||||
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
||||
// do the logout
|
||||
auth.Logout(w, r)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue