walnut_launchpad.html/js/controllers/boltController.js

8 lines
198 B
JavaScript
Raw Normal View History

2017-08-11 19:21:35 +00:00
app.controller('BoltController', ['$scope', 'Auth', function($scope, Auth) {
var vm = this;
vm.userName = function(profile){
profile = Auth.getProfile();
return profile.email;
};
2017-08-08 20:54:25 +00:00
}]);