Skip to content

Instantly share code, notes, and snippets.

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