mirror of
https://github.com/kemko/nomad.git
synced 2026-01-03 17:05:43 +03:00
* Validation tests for secure variables form: duplicate path error * Validation for dot in key name * Defensive pattern on copy keyValues
10 lines
291 B
JavaScript
10 lines
291 B
JavaScript
import Controller from '@ember/controller';
|
|
import { inject as service } from '@ember/service';
|
|
export default class VariablesVariableEditController extends Controller {
|
|
@service store;
|
|
queryParams = ['path'];
|
|
get existingVariables() {
|
|
return this.store.peekAll('variable');
|
|
}
|
|
}
|