Skip to content

Instantly share code, notes, and snippets.

@angelnikolov
Created May 6, 2018 09:58
Show Gist options
  • Save angelnikolov/d701ea1b39fded6a5f332db7ca553302 to your computer and use it in GitHub Desktop.
Save angelnikolov/d701ea1b39fded6a5f332db7ca553302 to your computer and use it in GitHub Desktop.
@CacheBuster({
cacheBusterNotifier: productNotifier
})
saveProduct(id: string, name: string, review: string) {
return this.http.put(`${environment.api}/products`, {
id,
name,
review
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment