Skip to content

Instantly share code, notes, and snippets.

@DriesS
Created October 15, 2015 14:40
Show Gist options
  • Save DriesS/771d811ce2b5c9a31be3 to your computer and use it in GitHub Desktop.
Save DriesS/771d811ce2b5c9a31be3 to your computer and use it in GitHub Desktop.
import Ember from 'ember';
export default Ember.Controller.extend({
actions: {
updateUser: function(){
const flashMessages = Ember.get(this, 'flashMessages');
this.get('model').save().then(function(){
flashMessages.success('Your profile was saved correctly!');
}, function(response) {
flashMessages.danger('Something went wrong!');
});
}
},
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment