Skip to content

Instantly share code, notes, and snippets.

@jobcerto
Created July 12, 2017 01:49
Show Gist options
  • Save jobcerto/b2ec566b67dcdd75431d26bac14b3f38 to your computer and use it in GitHub Desktop.
Save jobcerto/b2ec566b67dcdd75431d26bac14b3f38 to your computer and use it in GitHub Desktop.
update() {
axios.patch('/chapters/'+ this.resource.chapter_id + '/questions/' + this.question.id, this.attributes)
.then(({data}) => {
if(data.success) {
flash(data.message);
this.ui.edit = false;
}
})
},
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment