diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2020-04-14 14:51:39 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-14 14:51:39 +0200 |
commit | 85c352d8bcffbf1593964e047763947d76d466e3 (patch) | |
tree | baf14f0d0433c0ab2b25dc5ea788e7cb66780c0c /pkg/api/handlers/compat | |
parent | 004826653f2a8b064af8c1f055b1a402f4060d1c (diff) | |
parent | ff52b7524a8b6db7bb58eeda2b9328730a54c611 (diff) | |
download | podman-85c352d8bcffbf1593964e047763947d76d466e3.tar.gz podman-85c352d8bcffbf1593964e047763947d76d466e3.tar.bz2 podman-85c352d8bcffbf1593964e047763947d76d466e3.zip |
Merge pull request #5709 from vrothberg/v2-search
podmanV2: implement search
Diffstat (limited to 'pkg/api/handlers/compat')
-rw-r--r-- | pkg/api/handlers/compat/images_search.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/pkg/api/handlers/compat/images_search.go b/pkg/api/handlers/compat/images_search.go index 7283b22c4..8da685527 100644 --- a/pkg/api/handlers/compat/images_search.go +++ b/pkg/api/handlers/compat/images_search.go @@ -57,6 +57,7 @@ func SearchImages(w http.ResponseWriter, r *http.Request) { Filter: filter, Limit: query.Limit, } + results, err := image.SearchImages(query.Term, options) if err != nil { utils.BadRequest(w, "term", query.Term, err) |