summaryrefslogtreecommitdiff
path: root/client/js/controllers/status.js
blob: 940d79430ac0e1beb3a838f4a7d6bd497f534272 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20


/**
 * The status controller
 * 
 * @param {$scope} $scope The $scope service from angular
 * @param {Identity} The Identity service
 */
mainApp.controller('statusCtrl', ['$scope','Identity', '$rootScope', function ($scope, Identity, $rootScope)
{

	// Give profile to model
    $scope.profile=Identity.getProfile();

    // Function to logout
    $scope.raiseLogoutEvent=function(){
		$rootScope.$broadcast('logoutEvent');
	};

}]);