Skip to content

Instantly share code, notes, and snippets.

@ulisesrmzroche
Last active August 29, 2015 14:11
Show Gist options
  • Save ulisesrmzroche/c26ae1b9e0ae45ee04f0 to your computer and use it in GitHub Desktop.
Save ulisesrmzroche/c26ae1b9e0ae45ee04f0 to your computer and use it in GitHub Desktop.
import Ember from "ember";
export default Ember.Route.extend({
model: function(){
this.store.createRecord('user')
},
actions: {
save: function(){
return this.get('currentModel').save()
.then(function(){
alert("Epic Win!")
})
.catch(function(e){
alert('¯\_(ツ)_/¯')
})
}
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment