mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-17 12:07:02 +02:00
16 lines
392 B
JavaScript
16 lines
392 B
JavaScript
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;
|
|
}
|
|
}
|