mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-18 12:37:02 +02:00
22 lines
471 B
JavaScript
22 lines
471 B
JavaScript
/**
|
|
* Copyright (c) HashiCorp, Inc.
|
|
* SPDX-License-Identifier: MPL-2.0
|
|
*/
|
|
|
|
import Controller from '@ember/controller';
|
|
import { getOwner } from '@ember/application';
|
|
import { action } from '@ember/object';
|
|
|
|
export default class PkiCertificatesIndexController extends Controller {
|
|
get mountPoint() {
|
|
return getOwner(this).mountPoint;
|
|
}
|
|
|
|
@action setFilter(val) {
|
|
this.filter = val;
|
|
}
|
|
@action setFilterFocus(bool) {
|
|
this.filterFocused = bool;
|
|
}
|
|
}
|