Feist, James | 694015b | 2017-08-22 13:07:42 -0700 | [diff] [blame] | 1 | angular.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 | ); |