This repository has been archived on 2025-03-30. You can view files and clone it, but cannot push or open issues or pull requests.
hymenobacterdotinfo/app/pods/protected/characteristics/new/route.js

30 lines
706 B
JavaScript

import Ember from 'ember';
export default Ember.Route.extend({
currentUser: Ember.inject.service('session-account'),
beforeModel: function(transition) {
this._super(transition);
this.get('currentUser.account').then((user) => {
if (user.get('isReader')) {
this.transitionTo('protected.characteristics.index');
}
});
},
model: function() {
return this.store.createRecord('characteristic');
},
actions: {
willTransition: function(/*transition*/) {
let controller = this.get('controller');
let characteristic = controller.get('model');
if (characteristic.get('isNew')) {
characteristic.deleteRecord();
}
},
},
});