blob: d32f6cead27405135df664a65fed48add3dc358d [file] [log] [blame]
Feist, James694015b2017-08-22 13:07:42 -07001angular.module('bmcApp')
2 .controller(
3 'systemConfigController', [
4 '$scope', '$http',
5 function($scope, $http) {
6 $http.get('/intel/system_config').then(function(response) {
7 $scope.configuration = response.data;
8 });
9 }
10 ]
11 );