mirror of https://github.com/hashicorp/consul
17 lines
385 B
JavaScript
17 lines
385 B
JavaScript
/**
|
|
* Copyright (c) HashiCorp, Inc.
|
|
* SPDX-License-Identifier: BUSL-1.1
|
|
*/
|
|
|
|
import Route from './index';
|
|
|
|
export default class FolderRoute extends Route {
|
|
beforeModel(transition) {
|
|
super.beforeModel(...arguments);
|
|
const params = this.paramsFor('dc.kv.folder');
|
|
if (params.key === '/' || params.key == null) {
|
|
return this.transitionTo('dc.kv.index');
|
|
}
|
|
}
|
|
}
|