mirror of
https://github.com/containers/podman.git
synced 2025-05-29 22:46:25 +08:00
21 lines
422 B
Go
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)
|
|
}
|