mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-17 20:17:00 +02:00
* WIP read view for pki keys * remove options for query * combine adapter query methods * fix controller class names * remove class * rename adapter method, cleanup template, move formFields to key constructor
9 lines
222 B
JavaScript
9 lines
222 B
JavaScript
import Controller from '@ember/controller';
|
|
import { getOwner } from '@ember/application';
|
|
|
|
export default class PkiKeysIndexController extends Controller {
|
|
get mountPoint() {
|
|
return getOwner(this).mountPoint;
|
|
}
|
|
}
|