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/b49529f7f2e399f5bbac to your computer and use it in GitHub Desktop.
Save miyamotodev123/b49529f7f2e399f5bbac to your computer and use it in GitHub Desktop.
(function() {
angular.module('app')
.factory('AuthService', ['$http',
function($http) {
var AuthService = {};
AuthService.login = function(data) {
return $http.post('/login', data)
}
return AuthService;
}])
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment