portainer/app/agent/rest/host.js

16 lines
455 B
JavaScript

angular.module('portainer.agent').factory('Host', [
'$resource', 'API_ENDPOINT_ENDPOINTS', 'EndpointProvider',
function AgentFactory($resource, API_ENDPOINT_ENDPOINTS, EndpointProvider) {
'use strict';
return $resource(
API_ENDPOINT_ENDPOINTS + '/:endpointId/docker/host/:action',
{
endpointId: EndpointProvider.endpointID
},
{
info: { method: 'GET', params: { action: 'info' } }
}
);
}
]);