mirror of
https://github.com/fleetdm/fleet
synced 2026-05-23 00:49:03 +00:00
Relates to [#29324](https://github.com/fleetdm/fleet/issues/29324) updates certificates card UI on the host details and my devices page. changes some copy and adds a new Keychain column.  - [x] Changes file added for user-visible changes in `changes/`, `orbit/changes/` or `ee/fleetd-chrome/changes`. See [Changes files](https://github.com/fleetdm/fleet/blob/main/docs/Contributing/guides/committing-changes.md#changes-files) for more information. - [x] Manual QA for all new/changed functionality
33 lines
730 B
TypeScript
33 lines
730 B
TypeScript
import { IListSort } from "./list_options";
|
|
|
|
export interface IHostCertificate {
|
|
id: number;
|
|
not_valid_after: string;
|
|
not_valid_before: string;
|
|
certificate_authority: boolean;
|
|
common_name: string;
|
|
key_algorithm: string;
|
|
key_strength: number;
|
|
key_usage: string;
|
|
serial: string;
|
|
signing_algorithm: string;
|
|
subject: {
|
|
country: string;
|
|
organization: string;
|
|
organizational_unit: string;
|
|
common_name: string;
|
|
};
|
|
issuer: {
|
|
country: string;
|
|
organization: string;
|
|
organizational_unit: string;
|
|
common_name: string;
|
|
};
|
|
source: string;
|
|
username: string;
|
|
}
|
|
|
|
export const CERTIFICATES_DEFAULT_SORT: IListSort = {
|
|
order_key: "common_name",
|
|
order_direction: "asc",
|
|
} as const;
|