mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-24 16:11:08 +02:00
* initial setup for issuers toolbar and some slight changes to roles model after discussion with design. * wip * wip ... :/ * finalizes serializer and linkedblock iteration of is_default * clean up * fix * forgot this bit * pr comments amendments: * small PR comment changes
9 lines
223 B
JavaScript
9 lines
223 B
JavaScript
import Controller from '@ember/controller';
|
|
import { getOwner } from '@ember/application';
|
|
|
|
export default class PkiRolesIndexController extends Controller {
|
|
get mountPoint() {
|
|
return getOwner(this).mountPoint;
|
|
}
|
|
}
|