mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-17 12:07:02 +02:00
9 lines
224 B
JavaScript
9 lines
224 B
JavaScript
import Controller from '@ember/controller';
|
|
import { getOwner } from '@ember/application';
|
|
|
|
export default class PkiRolesIssuerController extends Controller {
|
|
get mountPoint() {
|
|
return getOwner(this).mountPoint;
|
|
}
|
|
}
|