Edit user

This commit is contained in:
Matthew Dillon 2015-10-01 07:13:36 -07:00
parent 69dbdcaa89
commit f2f16e15a4
5 changed files with 91 additions and 0 deletions

View file

@ -0,0 +1,13 @@
import Ember from 'ember';
export default Ember.Component.extend({
actions: {
save: function() {
this.sendAction('save');
},
cancel: function() {
this.sendAction('cancel');
},
}
});