mirror of
https://github.com/kemko/nomad.git
synced 2026-01-09 20:05:42 +03:00
13 lines
252 B
JavaScript
13 lines
252 B
JavaScript
/**
|
|
* Copyright (c) HashiCorp, Inc.
|
|
* SPDX-License-Identifier: BUSL-1.1
|
|
*/
|
|
|
|
import Route from '@ember/routing/route';
|
|
|
|
export default class VariablesVariableEditRoute extends Route {
|
|
model() {
|
|
return this.modelFor('variables.variable');
|
|
}
|
|
}
|