summaryrefslogtreecommitdiff
path: root/client/js/controllers/status.js
diff options
context:
space:
mode:
Diffstat (limited to 'client/js/controllers/status.js')
-rw-r--r--client/js/controllers/status.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/client/js/controllers/status.js b/client/js/controllers/status.js
index ce6882e..7425244 100644
--- a/client/js/controllers/status.js
+++ b/client/js/controllers/status.js
@@ -6,9 +6,9 @@
* @param {$scope} $scope The $scope service from angular
* @param {sharedProfile} sharedProfile The sharedProfile build by ourself
*/
-mainApp.controller('statusCtrl', ['$scope','sharedProfile', function ($scope, sharedProfile)
+mainApp.controller('statusCtrl', ['$scope','Identity', function ($scope, Identity)
{
- $scope.profile=sharedProfile;
+ $scope.profile=Identity.profile;
-}]); \ No newline at end of file
+}]);