Files
vault/ui/lib/pki/addon/controllers/certificates/index.js
Chelsea Shaw d3927bc6a3 Backport UI: Add pagination to new PKI (#23238)
* UI: Show unsupported screen if replication unsupported (#23178)

* UI: add pagination to new PKI (#23193)
2023-09-22 08:50:09 -06:00

24 lines
499 B
JavaScript

/**
* Copyright (c) HashiCorp, Inc.
* SPDX-License-Identifier: BUSL-1.1
*/
import Controller from '@ember/controller';
import { getOwner } from '@ember/application';
import { action } from '@ember/object';
export default class PkiCertificatesIndexController extends Controller {
queryParams = ['page'];
get mountPoint() {
return getOwner(this).mountPoint;
}
@action setFilter(val) {
this.filter = val;
}
@action setFilterFocus(bool) {
this.filterFocused = bool;
}
}