Gitiles
Code Review
Sign In
gerrit.openbmc.org
/
openbmc
/
bmcweb
/
f3d847c9b91319220266695c726fdacbd1a860e8
/
.
/
static
/
js
/
mainController.js
blob: c0be7e7dc9e043ce2929699a48493b024a3389ea [
file
] [
log
] [
blame
]
angular
.
module
(
'bmcApp'
).
controller
(
'MainCtrl'
,
[
'$scope'
,
'AuthenticationService'
,
function
(
$scope
,
AuthenticationService
)
{
$scope
.
is_logged_in
=
AuthenticationService
.
IsLoggedIn
;
}
]);