|
|
|
@ -97,11 +97,11 @@ angular.module('uifordocker.services', ['ngResource', 'ngSanitize'])
|
|
|
|
|
inspect: {method: 'GET', params: {id: '@id', action: 'json'}},
|
|
|
|
|
push: {
|
|
|
|
|
method: 'POST', params: {action: 'push', id: '@tag'},
|
|
|
|
|
isArray: true, transformResponse: pushImageHandler
|
|
|
|
|
isArray: true, transformResponse: jsonObjectsToArrayHandler
|
|
|
|
|
},
|
|
|
|
|
create: {
|
|
|
|
|
method: 'POST', params: {action: 'create', fromImage: '@fromImage', tag: '@tag'},
|
|
|
|
|
isArray: true, transformResponse: createImageHandler
|
|
|
|
|
isArray: true, transformResponse: jsonObjectsToArrayHandler
|
|
|
|
|
},
|
|
|
|
|
remove: {
|
|
|
|
|
method: 'DELETE', params: {id: '@id'},
|
|
|
|
@ -115,7 +115,7 @@ angular.module('uifordocker.services', ['ngResource', 'ngSanitize'])
|
|
|
|
|
return $resource(Settings.url + '/events', {}, {
|
|
|
|
|
query: {
|
|
|
|
|
method: 'GET', params: {since: '@since', until: '@until'},
|
|
|
|
|
isArray: true, transformResponse: queryEventsHandler
|
|
|
|
|
isArray: true, transformResponse: jsonObjectsToArrayHandler
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
}])
|
|
|
|
|