portainer/app/agent/rest/agent.js

13 lines
477 B
JavaScript
Raw Normal View History

2018-05-06 07:15:57 +00:00
angular.module('portainer.agent')
.factory('Agent', ['$resource', 'API_ENDPOINT_ENDPOINTS', 'EndpointProvider', 'StateManager',
function AgentFactory($resource, API_ENDPOINT_ENDPOINTS, EndpointProvider, StateManager) {
2018-05-06 07:15:57 +00:00
'use strict';
return $resource(API_ENDPOINT_ENDPOINTS + '/:endpointId/docker/v:version/agents', {
endpointId: EndpointProvider.endpointID,
version: StateManager.getAgentApiVersion
2018-05-06 07:15:57 +00:00
},
{
query: { method: 'GET', isArray: true }
2018-05-06 07:15:57 +00:00
});
}]);