Files
portainer/app/rest/config.js
T
2017-02-01 12:26:29 +13:00

5 lines
186 B
JavaScript

angular.module('portainer.rest')
.factory('Config', ['$resource', 'CONFIG_ENDPOINT', function ConfigFactory($resource, CONFIG_ENDPOINT) {
return $resource(CONFIG_ENDPOINT).get();
}]);