Skip to content

Instantly share code, notes, and snippets.

@joshdmiller
Forked from andyczerwonka/angular service example.js
Last active December 10, 2015 16:48
Show Gist options
  • Save joshdmiller/4463590 to your computer and use it in GitHub Desktop.
Save joshdmiller/4463590 to your computer and use it in GitHub Desktop.
service.factory('userService', [ '$http', function($http) {
return {
go : function( user ) {
console.log('Executing ' + this.request);
return $http.post( '/api/login', user );
}
};
} ]);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment