1
0
Fork 0
traefik/webui/src/app/sections/providers/frontend-monitor/frontend-monitor.directive.js
Fernandez Ludovic a8cbe7ef5e feat(webui): Add dashboard filter.
- Convert Object properties to and array for backends and frondends for each providers.
- Remove unused parameters.
- Add filter.
2017-04-24 10:04:57 +02:00

20 lines
366 B
JavaScript

'use strict';
function frontendMonitor() {
return {
restrict: 'EA',
template: require('./frontend-monitor.html'),
controller: FrontendMonitorController,
controllerAs: 'frontendCtrl',
bindToController: true,
scope: {
frontend: '='
}
};
}
function FrontendMonitorController() {
// Nothing
}
module.exports = frontendMonitor;