Files
Daniel J Walsh a5e37ad280 Switch all references to github.com/containers/libpod -> podman
Signed-off-by: Daniel J Walsh <dwalsh@redhat.com>
2020-07-28 08:23:45 -04:00

21 lines
422 B
Go

package compat
import (
"net/http"
"github.com/containers/podman/v2/libpod"
"github.com/containers/podman/v2/pkg/api/handlers/utils"
)
func Changes(w http.ResponseWriter, r *http.Request) {
runtime := r.Context().Value("runtime").(*libpod.Runtime)
id := utils.GetName(r)
changes, err := runtime.GetDiff("", id)
if err != nil {
utils.InternalServerError(w, err)
return
}
utils.WriteJSON(w, 200, changes)
}