mirror of https://github.com/portainer/portainer
17 lines
468 B
JavaScript
17 lines
468 B
JavaScript
import angular from 'angular';
|
|
|
|
angular.module('portainer.agent').factory('Host', HostFactory);
|
|
|
|
function HostFactory($resource, API_ENDPOINT_ENDPOINTS, EndpointProvider, StateManager) {
|
|
return $resource(
|
|
`${API_ENDPOINT_ENDPOINTS}/:endpointId/docker/v:version/host/:action`,
|
|
{
|
|
endpointId: EndpointProvider.endpointID,
|
|
version: StateManager.getAgentApiVersion,
|
|
},
|
|
{
|
|
info: { method: 'GET', params: { action: 'info' } },
|
|
}
|
|
);
|
|
}
|