walnut_launchpad.html/js/services/auth.js

12 lines
184 B
JavaScript
Raw Normal View History

2017-08-08 20:54:25 +00:00
app.factory('authService', function($q){
return {
getUser: function(){
var user = {
email: 'jane@doe.com',
password: 'password'
}
return $q.when(user);
}
};
});