Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save miyamotodev123/ed5c1739469e05c3a949 to your computer and use it in GitHub Desktop.
Save miyamotodev123/ed5c1739469e05c3a949 to your computer and use it in GitHub Desktop.
(function() {
angular.module('app')
// injected 'growl' as a dependency to be used by the LoginController
.controller('LoginController', ['$location', 'AuthService', 'growl',
function($location, AuthService, growl) {
var vm = this;
vm.login = function() {
var login_data = {
email: vm.email,
password: vm.password
}
AuthService.login(login_data)
.success(function(response) {
console.log(response);
$location.path(response.redirect)
})
.error(function (error) {
console.log('failed login')
// add a growl error message
growl.addErrorMessage(error.error);
})
}
}])
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment