istic-openstack/client/js/controllers/status.js
2016-02-10 17:47:01 +01:00

14 lines
310 B
JavaScript

/**
* The status controller
*
* @param {$scope} $scope The $scope service from angular
* @param {sharedProfile} sharedProfile The sharedProfile build by ourself
*/
mainApp.controller('statusCtrl', ['$scope','Identity', function ($scope, Identity)
{
$scope.profile=Identity.profile;
}]);