open-vault/ui/app/routes/vault/cluster/access/control-group-accessor.js
Matthew Irish 9953eb76aa
UI - control groups (#4947)
* add routes for control groups in tools, settings, access (#4718)
* UI control group - storage, request, authorization, and unwrapping (#4899)
* UI control groups config (#4927)
2018-07-18 20:59:04 -05:00

31 lines
737 B
JavaScript

import Ember from 'ember';
import UnloadModel from 'vault/mixins/unload-model-route';
const { inject } = Ember;
export default Ember.Route.extend(UnloadModel, {
version: inject.service(),
beforeModel() {
return this.get('version').fetchFeatures().then(() => {
return this._super(...arguments);
});
},
model(params) {
return this.get('version.isOSS') ? null : this.store.findRecord('control-group', params.accessor);
},
actions: {
willTransition() {
return true;
},
// deactivate happens later than willTransition,
// so since we're using the model to render links
// we don't want the UI blinking
deactivate() {
this.unloadModel();
return true;
},
},
});