
- Convert Object properties to and array for backends and frondends for each providers. - Remove unused parameters. - Add filter.
20 lines
366 B
JavaScript
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;
|