open-vault/ui/app/routes/vault/cluster/policies/create.js
Matthew Irish 3a734d7cb4
UI - first RC feedback (#4278)
* add hasSentinel to the version service
* use hasSentinel instead of features directly
* type='button' strikes again
* pass url param in tab links to ensure hrefs are updated
* 404 when the item_type is invalid for the identity route
2018-04-05 16:08:18 -05:00

26 lines
759 B
JavaScript

import Ember from 'ember';
import UnloadModelRoute from 'vault/mixins/unload-model-route';
import UnsavedModelRoute from 'vault/mixins/unsaved-model-route';
const { inject } = Ember;
export default Ember.Route.extend(UnloadModelRoute, UnsavedModelRoute, {
version: inject.service(),
model() {
let policyType = this.policyType();
if (!this.get('version.hasSentinel') && policyType !== 'acl') {
return this.transitionTo('vault.cluster.policies', policyType);
}
return this.store.createRecord(`policy/${policyType}`, {});
},
setupController(controller) {
this._super(...arguments);
controller.set('policyType', this.policyType());
},
policyType() {
return this.paramsFor('vault.cluster.policies').type;
},
});