mirror of
https://github.com/empayre/fleet.git
synced 2024-11-06 17:05:18 +00:00
715d908613
Notable refactoring: - Use stdlib "context" in place of "golang.org/x/net/context" - Go-kit no longer wraps errors, so we remove the unwrap in transport_error.go - Use MakeHandler when setting up endpoint tests (fixes test bug caught during this refactoring) Closes #1411.
23 lines
336 B
Go
23 lines
336 B
Go
package service
|
|
|
|
import (
|
|
"context"
|
|
"net/http"
|
|
|
|
"github.com/gorilla/mux"
|
|
)
|
|
|
|
func decodeChangeEmailRequest(ctx context.Context, r *http.Request) (interface{}, error) {
|
|
vars := mux.Vars(r)
|
|
token, ok := vars["token"]
|
|
if !ok {
|
|
return nil, errBadRoute
|
|
}
|
|
|
|
response := changeEmailRequest{
|
|
Token: token,
|
|
}
|
|
|
|
return response, nil
|
|
}
|