mirror of
https://github.com/portainer/portainer.git
synced 2025-07-22 23:09:41 +02:00
4 lines
186 B
JavaScript
4 lines
186 B
JavaScript
angular.module('portainer.rest')
|
|
.factory('Config', ['$resource', 'CONFIG_ENDPOINT', function ConfigFactory($resource, CONFIG_ENDPOINT) {
|
|
return $resource(CONFIG_ENDPOINT).get();
|
|
}]);
|