Skip to content

Instantly share code, notes, and snippets.

@harriyott
Last active March 7, 2018 11:51
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 harriyott/c07cf856c549d78f1621c719ddc4ccfa to your computer and use it in GitHub Desktop.
Save harriyott/c07cf856c549d78f1621c719ddc4ccfa to your computer and use it in GitHub Desktop.
export class KittenService {
feedKitten(kittenId: number): void {
const url = `api/kitten/${kittenId}/feed`;
this.http.post(url, {}).subscribe();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment