mirror of
https://github.com/fleetdm/fleet
synced 2026-04-21 21:47:20 +00:00
relates to #12926 This implements the changes to the Controls page that add the windows Bitlocker functionality. There is some work that needs to be complete when the API is done. For now we are mocking the new disk encryption API response **new column for windows hosts:**  also includes various other changes behind the scenes that include windows hosts into the disk encryption as well as changes to the profiles status summary to use StatusIndicatorWithIcon - [x] Changes file added for user-visible changes in `changes/` or `orbit/changes/`. See [Changes files](https://fleetdm.com/docs/contributing/committing-changes#changes-files) for more information. - [x] Manual QA for all new/changed functionality
43 lines
1.1 KiB
TypeScript
43 lines
1.1 KiB
TypeScript
import { MdmProfileStatus } from "interfaces/mdm";
|
|
import { IndicatorStatus } from "components/StatusIndicatorWithIcon/StatusIndicatorWithIcon";
|
|
|
|
interface IAggregateDisplayOption {
|
|
value: MdmProfileStatus;
|
|
text: string;
|
|
iconName: IndicatorStatus;
|
|
tooltipText: string;
|
|
}
|
|
|
|
const AGGREGATE_STATUS_DISPLAY_OPTIONS: IAggregateDisplayOption[] = [
|
|
{
|
|
value: "verified",
|
|
text: "Verified",
|
|
iconName: "success",
|
|
tooltipText:
|
|
"The host applied all OS settings. Fleet verified with osquery.",
|
|
},
|
|
{
|
|
value: "verifying",
|
|
text: "Verifying",
|
|
iconName: "successPartial",
|
|
tooltipText:
|
|
"The hosts acknowledged all MDM commands to apply OS settings. " +
|
|
"Fleet is verifying the OS settings are applied with osquery.",
|
|
},
|
|
{
|
|
value: "pending",
|
|
text: "Pending",
|
|
iconName: "pendingPartial",
|
|
tooltipText:
|
|
"Host will receive MDM command to apply OS settings when the host come online.",
|
|
},
|
|
{
|
|
value: "failed",
|
|
text: "Failed",
|
|
iconName: "error",
|
|
tooltipText:
|
|
"Host failed to apply the latest OS settings. Click to view error(s).",
|
|
},
|
|
];
|
|
|
|
export default AGGREGATE_STATUS_DISPLAY_OPTIONS;
|