mirror of
https://github.com/traefik/traefik.git
synced 2025-08-12 01:27:09 +02:00
- show providers (auto refresh: 2s) - show health (auto refresh: 3s) - more colors - add font - remove jumbotron - javascript minified version
11 lines
215 B
JavaScript
11 lines
215 B
JavaScript
(function () {
|
|
'use strict';
|
|
|
|
angular
|
|
.module('traefik.core.provider', ['ngResource'])
|
|
.factory('Providers', ['$resource', function ($resource) {
|
|
return $resource('/api/providers');
|
|
}]);
|
|
|
|
})();
|