summaryrefslogtreecommitdiff
path: root/pkg/api/handlers/compat/changes.go
blob: a5851ecfca09aeb79e2e90de4168b553b1497515 (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/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)
}