mirror of https://github.com/portainer/portainer
9 lines
280 B
JavaScript
9 lines
280 B
JavaScript
|
angular.module('portainer.rest')
|
||
|
.factory('DockerHub', ['$resource', 'DOCKERHUB_ENDPOINT', function DockerHubFactory($resource, DOCKERHUB_ENDPOINT) {
|
||
|
'use strict';
|
||
|
return $resource(DOCKERHUB_ENDPOINT, {}, {
|
||
|
get: { method: 'GET' },
|
||
|
update: { method: 'PUT' }
|
||
|
});
|
||
|
}]);
|