Skip to content

Instantly share code, notes, and snippets.

View joshdmiller's full-sized avatar

Josh David Miller joshdmiller

View GitHub Profile
service.factory('userService', [ '$http', function($http) {
return {
go : function( user ) {
console.log('Executing ' + this.request);
return $http.post( '/api/login', user );
}
};
} ]);