blob: d32f6cead27405135df664a65fed48add3dc358d (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
angular.module('bmcApp')
.controller(
'systemConfigController', [
'$scope', '$http',
function($scope, $http) {
$http.get('/intel/system_config').then(function(response) {
$scope.configuration = response.data;
});
}
]
);
|