Родитель
3da22f075f
Коммит
159b42ae3c
|
@ -25,5 +25,9 @@ export default Ember.Route.extend(AuthenticatedRouteMixin, {
|
|||
},
|
||||
model: function() {
|
||||
return this.store.createRecord('client', {});
|
||||
},
|
||||
deactivate: function() {
|
||||
var model = this.controllerFor('client.register').get('model');
|
||||
model.rollbackAttributes();
|
||||
}
|
||||
});
|
||||
|
|
|
@ -17,5 +17,9 @@ export default Ember.Route.extend(AuthenticatedRouteMixin, {
|
|||
cancel: function() {
|
||||
return this.transitionTo('clients');
|
||||
}
|
||||
},
|
||||
deactivate: function() {
|
||||
var model = this.controllerFor('client.update').get('model');
|
||||
model.rollbackAttributes();
|
||||
}
|
||||
});
|
||||
|
|
Загрузка…
Ссылка в новой задаче