summaryrefslogtreecommitdiff
path: root/pkg/api/handlers/compat/changes.go
blob: c442abbf973f2a5d59842230149a612715ab21ef (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package compat

import (
	"net/http"

	"github.com/containers/podman/v3/libpod"
	"github.com/containers/podman/v3/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)
}