blob: c0be7e7dc9e043ce2929699a48493b024a3389ea [file] [log] [blame]
angular.module('bmcApp').controller('MainCtrl', [
'$scope', 'AuthenticationService',
function($scope, AuthenticationService) {
$scope.is_logged_in = AuthenticationService.IsLoggedIn;
}
]);