Gitiles
Code Review
Sign In
gerrit.openbmc.org
/
openbmc
/
bmcweb
/
8f0c0481d2280919b38a31656ba21a4347d12620
/
.
/
static
/
js
/
systemConfigController.js
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
;
});
}
]
);