2018-05-06 07:15:57 +00:00
|
|
|
angular.module('portainer.agent')
|
2018-10-26 03:16:29 +00:00
|
|
|
.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';
|
2018-10-26 03:16:29 +00:00
|
|
|
return $resource(API_ENDPOINT_ENDPOINTS + '/:endpointId/docker/v:version/agents', {
|
|
|
|
endpointId: EndpointProvider.endpointID,
|
|
|
|
version: StateManager.getAgentApiVersion
|
2018-05-06 07:15:57 +00:00
|
|
|
},
|
|
|
|
{
|
2018-07-23 05:01:03 +00:00
|
|
|
query: { method: 'GET', isArray: true }
|
2018-05-06 07:15:57 +00:00
|
|
|
});
|
|
|
|
}]);
|