open-vault/ui/app/routes/vault/cluster/tools/index.js
Matthew Irish d509588cd2
Ember update (#5386)
Ember update - update ember-cli, ember-data, and ember to 3.4 series
2018-09-25 11:28:26 -05:00

16 lines
544 B
JavaScript

import { inject as service } from '@ember/service';
import Route from '@ember/routing/route';
import { toolsActions } from 'vault/helpers/tools-actions';
export default Route.extend({
currentCluster: service(),
beforeModel(transition) {
const currentCluster = this.get('currentCluster.cluster.name');
const supportedActions = toolsActions();
if (transition.targetName === this.routeName) {
transition.abort();
return this.replaceWith('vault.cluster.tools.tool', currentCluster, supportedActions[0]);
}
},
});