mirror of
https://github.com/portainer/portainer.git
synced 2025-07-24 15:59:41 +02:00
7 lines
320 B
JavaScript
7 lines
320 B
JavaScript
angular.module('portainer.rest')
|
|
.factory('Version', ['$resource', 'DOCKER_ENDPOINT', 'EndpointProvider', function VersionFactory($resource, DOCKER_ENDPOINT, EndpointProvider) {
|
|
'use strict';
|
|
return $resource(DOCKER_ENDPOINT + '/:endpointId/version', {
|
|
endpointId: EndpointProvider.endpointID
|
|
});
|
|
}]);
|