mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-17 03:57:01 +02:00
16 lines
328 B
JavaScript
16 lines
328 B
JavaScript
/**
|
|
* Copyright (c) HashiCorp, Inc.
|
|
* SPDX-License-Identifier: BUSL-1.1
|
|
*/
|
|
|
|
import Controller from '@ember/controller';
|
|
import { getOwner } from '@ember/application';
|
|
|
|
export default class PkiKeysIndexController extends Controller {
|
|
queryParams = ['page'];
|
|
|
|
get mountPoint() {
|
|
return getOwner(this).mountPoint;
|
|
}
|
|
}
|