16 lines
361 B
JavaScript
16 lines
361 B
JavaScript
/**
|
|
* Copyright (c) HashiCorp, Inc.
|
|
* SPDX-License-Identifier: MPL-2.0
|
|
*/
|
|
|
|
import Route from '@ember/routing/route';
|
|
|
|
export default Route.extend({
|
|
beforeModel: function (transition) {
|
|
if (transition.targetName === this.routeName) {
|
|
transition.abort();
|
|
return this.replaceWith('vault.cluster.settings.mount-secret-backend');
|
|
}
|
|
},
|
|
});
|