Edit user
This commit is contained in:
parent
69dbdcaa89
commit
f2f16e15a4
5 changed files with 91 additions and 0 deletions
13
app/pods/protected/users/user-form/component.js
Normal file
13
app/pods/protected/users/user-form/component.js
Normal 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');
|
||||
},
|
||||
}
|
||||
});
|
Reference in a new issue