2017-01-31 23:26:29 +00:00
|
|
|
angular.module('portainer.rest')
|
2017-03-12 16:24:15 +00:00
|
|
|
.factory('Node', ['$resource', 'Settings', 'EndpointProvider', function NodeFactory($resource, Settings, EndpointProvider) {
|
2017-01-31 23:26:29 +00:00
|
|
|
'use strict';
|
2017-03-12 16:24:15 +00:00
|
|
|
return $resource(Settings.url + '/:endpointId/nodes/:id/:action', {
|
|
|
|
endpointId: EndpointProvider.endpointID
|
|
|
|
},
|
|
|
|
{
|
2017-01-31 23:26:29 +00:00
|
|
|
query: {method: 'GET', isArray: true},
|
|
|
|
get: {method: 'GET', params: {id: '@id'}},
|
|
|
|
update: { method: 'POST', params: {id: '@id', action: 'update', version: '@version'} },
|
|
|
|
remove: { method: 'DELETE', params: {id: '@id'} }
|
|
|
|
});
|
|
|
|
}]);
|