d509588cd2
Ember update - update ember-cli, ember-data, and ember to 3.4 series
16 lines
544 B
JavaScript
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]);
|
|
}
|
|
},
|
|
});
|