mirror of
https://github.com/optim-enterprises-bv/vault.git
synced 2025-10-29 17:52:32 +00:00
27 lines
802 B
JavaScript
27 lines
802 B
JavaScript
import { inject as service } from '@ember/service';
|
|
import Route from '@ember/routing/route';
|
|
import UnloadModelRoute from 'vault/mixins/unload-model-route';
|
|
import UnsavedModelRoute from 'vault/mixins/unsaved-model-route';
|
|
|
|
export default Route.extend(UnloadModelRoute, UnsavedModelRoute, {
|
|
store: service(),
|
|
version: service(),
|
|
|
|
model() {
|
|
const policyType = this.policyType();
|
|
if (!this.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;
|
|
},
|
|
});
|