Skip to content

Instantly share code, notes, and snippets.

@NMZivkovic
Created October 8, 2017 19:26
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 NMZivkovic/a233179cfe710c91a40f20d652ac1a0e to your computer and use it in GitHub Desktop.
Save NMZivkovic/a233179cfe710c91a40f20d652ac1a0e to your computer and use it in GitHub Desktop.
@Injectable()
export class UserService {
constructor(private http: Http) {
}
deleteUser(user:User): Observable<any>{
return this.http.post("http://localhost:3000/deleteUser", { id: user._id })
.map((res:any) => {
return res.json();
})
.catch((error:any) => {
return Observable.throw(error.json ? error.json().error : error || 'Server error')
});
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment