8 lines
198 B
JavaScript
8 lines
198 B
JavaScript
app.controller('BoltController', ['$scope', 'Auth', function($scope, Auth) {
|
|
var vm = this;
|
|
vm.userName = function(profile){
|
|
profile = Auth.getProfile();
|
|
return profile.email;
|
|
};
|
|
}]);
|