Skip to content

Instantly share code, notes, and snippets.

@octavioamu
Created August 14, 2019 22:09
Show Gist options
  • Save octavioamu/ad1518c6cd6f4ae6dd17cec650de915b to your computer and use it in GitHub Desktop.
Save octavioamu/ad1518c6cd6f4ae6dd17cec650de915b to your computer and use it in GitHub Desktop.
favorites
var getFav = fetchData('api/v0.1/favorites/bounty', 'GET')
$.when(getFav).then((response, status, statusCode) => {
console.log(response, status, statusCode)
})
var postFav = fetchData('api/v0.1/favorites/user/2', 'POST')
$.when(postFav).then((response, status, statusCode) => {
console.log(response, status, statusCode)
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment