2014-11-10 23:12:33 +02:00
|
|
|
'use strict';
|
|
|
|
|
|
2015-07-24 17:06:55 -05:00
|
|
|
angular.module('users').controller('SettingsController', ['$scope', 'Authentication',
|
|
|
|
|
function($scope, Authentication) {
|
2014-11-10 23:12:33 +02:00
|
|
|
$scope.user = Authentication.user;
|
|
|
|
|
}
|
|
|
|
|
]);
|