summaryrefslogtreecommitdiff
path: root/pkg/api/handlers/handler.go
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2020-01-31 08:06:41 -0800
committerGitHub <noreply@github.com>2020-01-31 08:06:41 -0800
commit1cf4b72a6ea8f6fe8344e91badd19a8fe264193e (patch)
tree835d3de0f328facc0d7c456ec3824f24fcf58e81 /pkg/api/handlers/handler.go
parentc29273e84f98e67589d8adcb7ab8d142d4563cd3 (diff)
parentf1eaccedfa08455d699d00dcda63b95aeb34833e (diff)
downloadpodman-1cf4b72a6ea8f6fe8344e91badd19a8fe264193e.tar.gz
podman-1cf4b72a6ea8f6fe8344e91badd19a8fe264193e.tar.bz2
podman-1cf4b72a6ea8f6fe8344e91badd19a8fe264193e.zip
Merge pull request #5030 from baude/apiv2longname
fix longname handling for bindings
Diffstat (limited to 'pkg/api/handlers/handler.go')
-rw-r--r--pkg/api/handlers/handler.go9
1 files changed, 0 insertions, 9 deletions
diff --git a/pkg/api/handlers/handler.go b/pkg/api/handlers/handler.go
index d60a5b239..231c11f23 100644
--- a/pkg/api/handlers/handler.go
+++ b/pkg/api/handlers/handler.go
@@ -4,26 +4,17 @@ import (
"net/http"
"github.com/containers/libpod/libpod"
- "github.com/gorilla/mux"
"github.com/gorilla/schema"
"github.com/pkg/errors"
)
// Convenience routines to reduce boiler plate in handlers
-func getVar(r *http.Request, k string) string {
- return mux.Vars(r)[k]
-}
-
// func hasVar(r *http.Request, k string) bool {
// _, found := mux.Vars(r)[k]
// return found
// }
-func getName(r *http.Request) string {
- return getVar(r, "name")
-}
-
func decodeQuery(r *http.Request, i interface{}) error {
decoder := r.Context().Value("decoder").(*schema.Decoder)