summaryrefslogtreecommitdiff
path: root/pkg/api/handlers/compat/images_push.go
diff options
context:
space:
mode:
authorJhon Honce <jhonce@redhat.com>2020-12-03 16:11:17 -0700
committerJhon Honce <jhonce@redhat.com>2020-12-03 16:11:17 -0700
commit468947d5c85cdd72d604c95789d91075553f0a92 (patch)
treef4956833d8096466e918816e082f849d5ee77e91 /pkg/api/handlers/compat/images_push.go
parent70284b18cc7d4dc478c439cdda60ba64cfec060b (diff)
downloadpodman-468947d5c85cdd72d604c95789d91075553f0a92.tar.gz
podman-468947d5c85cdd72d604c95789d91075553f0a92.tar.bz2
podman-468947d5c85cdd72d604c95789d91075553f0a92.zip
Jira RUN-1106 Image handlers updates
* Audit and add tests for required fields. * Added issue for /images/load implementation Audit: - GET /images/json GetImages - POST /build BuildImage - POST /build/prune 404 not found - POST /images/create CreateImageFromImage/CreateImageFromSrc - GET /images/{name}/json GetImage - GET /images/{name}/history HistoryImage - POST /images/{name}/push PushImage - POST /images/{name}/tag TagImage - DELETE /images/{name} RemoveImage - POST /images/prune PruneImages - POST /commit CommitContainer - GET /images/{name}/get ExportImage - GET /images/get ExportImages - POST /images/load LoadImages See https://github.com/containers/podman/issues/8586 Signed-off-by: Jhon Honce <jhonce@redhat.com>
Diffstat (limited to 'pkg/api/handlers/compat/images_push.go')
-rw-r--r--pkg/api/handlers/compat/images_push.go1
1 files changed, 0 insertions, 1 deletions
diff --git a/pkg/api/handlers/compat/images_push.go b/pkg/api/handlers/compat/images_push.go
index 12593a68c..0f3da53e8 100644
--- a/pkg/api/handlers/compat/images_push.go
+++ b/pkg/api/handlers/compat/images_push.go
@@ -81,5 +81,4 @@ func PushImage(w http.ResponseWriter, r *http.Request) {
}
utils.WriteResponse(w, http.StatusOK, "")
-
}