diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2020-01-24 06:56:55 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-01-24 06:56:55 -0800 |
commit | 81e59a742b46d41848c8c213e155fbc9ecc4e5f8 (patch) | |
tree | bb0fade91f9d35015b10316cf362f46e03a4a035 /pkg/api/handlers/handler.go | |
parent | 5bad873c4cd9fab9112e1d84ba376d47073cc8bb (diff) | |
parent | 9634e7eef77abbba2584b8e78daf9c76cfdcedd9 (diff) | |
download | podman-81e59a742b46d41848c8c213e155fbc9ecc4e5f8.tar.gz podman-81e59a742b46d41848c8c213e155fbc9ecc4e5f8.tar.bz2 podman-81e59a742b46d41848c8c213e155fbc9ecc4e5f8.zip |
Merge pull request #4958 from jwhonce/wip/filters
[CI:DOCS] Add query parameter converters for complex types
Diffstat (limited to 'pkg/api/handlers/handler.go')
-rw-r--r-- | pkg/api/handlers/handler.go | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/pkg/api/handlers/handler.go b/pkg/api/handlers/handler.go index 4f303f6ab..d60a5b239 100644 --- a/pkg/api/handlers/handler.go +++ b/pkg/api/handlers/handler.go @@ -15,10 +15,11 @@ 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 hasVar(r *http.Request, k string) bool { +// _, found := mux.Vars(r)[k] +// return found +// } + func getName(r *http.Request) string { return getVar(r, "name") } |