blob: d32f6cead27405135df664a65fed48add3dc358d [file] [log] [blame]
angular.module('bmcApp')
.controller(
'systemConfigController', [
'$scope', '$http',
function($scope, $http) {
$http.get('/intel/system_config').then(function(response) {
$scope.configuration = response.data;
});
}
]
);