mirror of https://github.com/portainer/portainer
14 lines
323 B
JavaScript
14 lines
323 B
JavaScript
|
import angular from 'angular';
|
||
|
|
||
|
angular.module('portainer.agent').factory('AgentDockerhub', AgentDockerhub);
|
||
|
|
||
|
function AgentDockerhub($resource, API_ENDPOINT_ENDPOINTS) {
|
||
|
return $resource(
|
||
|
`${API_ENDPOINT_ENDPOINTS}/:endpointId/:endpointType/v2/dockerhub`,
|
||
|
{},
|
||
|
{
|
||
|
limits: { method: 'GET' },
|
||
|
}
|
||
|
);
|
||
|
}
|