mirror of
https://github.com/optim-enterprises-bv/vault.git
synced 2025-11-01 11:08:10 +00:00
* UI: add pagination to new PKI (#23193) * fixes store type import * fixes tests --------- Co-authored-by: Jordan Reimer <zofskeez@gmail.com>
23 lines
542 B
TypeScript
23 lines
542 B
TypeScript
/**
|
|
* Copyright (c) HashiCorp, Inc.
|
|
* SPDX-License-Identifier: BUSL-1.1
|
|
*/
|
|
|
|
import Component from '@glimmer/component';
|
|
import { PKI_DEFAULT_EMPTY_STATE_MSG } from 'pki/routes/overview';
|
|
import type PkiKeyModel from 'vault/models/pki/key';
|
|
|
|
interface Args {
|
|
keyModels: PkiKeyModel[];
|
|
mountPoint: string;
|
|
canImportKey: boolean;
|
|
canGenerateKey: boolean;
|
|
canRead: boolean;
|
|
canEdit: boolean;
|
|
hasConfig: boolean;
|
|
}
|
|
|
|
export default class PkiKeyList extends Component<Args> {
|
|
notConfiguredMessage = PKI_DEFAULT_EMPTY_STATE_MSG;
|
|
}
|