podman/pkg/api/handlers/compat/changes.go

21 lines
416 B
Go

package compat
import (
"net/http"
"github.com/containers/libpod/libpod"
"github.com/containers/libpod/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)
}