mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-17 20:17:00 +02:00
* move mountPoint to parent PkiController and extend for engine routes
* breadcrumb attempt
* Revert "breadcrumb attempt"
This reverts commit d2140dcd3b
.
* make breadcrumb component
* revert extending pki controller
* move file import
* generalize breadcrumb component
* restructure files
* remove docs
* cleanup jsdoc and test
* add to pki role details page
* address comments
* fix test
17 lines
393 B
JavaScript
17 lines
393 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;
|
|
}
|
|
}
|