open-nomad/ui/app/routes/index.js
2023-04-10 15:36:59 +00:00

13 lines
221 B
JavaScript

/**
* Copyright (c) HashiCorp, Inc.
* SPDX-License-Identifier: MPL-2.0
*/
import Route from '@ember/routing/route';
export default class IndexRoute extends Route {
redirect() {
this.transitionTo('jobs');
}
}