You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
portainer/app/docker/rest/response/image.js

10 lines
305 B

// The get action of the Image service returns a file.
// ngResource will transform it as an array of chars.
// This functions simply creates a response object and assign
// the data to a field.
function imageGetResponse(data) {
var response = {};
response.file = data;
return response;
}