966c7dbf02
New look for the navbar and new functionality on mobile. Also includes new look for the mounts list and headers in secret engines.
11 lines
282 B
JavaScript
11 lines
282 B
JavaScript
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');
|
|
}
|
|
},
|
|
});
|