mirror of
https://github.com/empayre/fleet.git
synced 2024-11-07 09:18:59 +00:00
a568c28124
Co-authored-by: Jacob Shandling <jacob@fleetdm.com> Co-authored-by: Luke Heath <luke@fleetdm.com>
39 lines
888 B
TypeScript
39 lines
888 B
TypeScript
export const LABEL_SLUG_PREFIX = "labels/";
|
||
|
||
export const DEFAULT_SORT_HEADER = "display_name";
|
||
export const DEFAULT_SORT_DIRECTION = "asc";
|
||
export const DEFAULT_PAGE_SIZE = 20;
|
||
|
||
export const HOST_SELECT_STATUSES = [
|
||
{
|
||
disabled: false,
|
||
label: "All hosts",
|
||
value: "",
|
||
helpText: "All hosts added to Fleet.",
|
||
},
|
||
{
|
||
disabled: false,
|
||
label: "Online hosts",
|
||
value: "online",
|
||
helpText: "Hosts that will respond to a live query.",
|
||
},
|
||
{
|
||
disabled: false,
|
||
label: "Offline hosts",
|
||
value: "offline",
|
||
helpText: "Hosts that won’t respond to a live query.",
|
||
},
|
||
{
|
||
disabled: false,
|
||
label: "Missing hosts",
|
||
value: "missing",
|
||
helpText: "Hosts that have been offline for 30 days or more.",
|
||
},
|
||
{
|
||
disabled: false,
|
||
label: "New hosts",
|
||
value: "new",
|
||
helpText: "Hosts added to Fleet in the last 24 hours.",
|
||
},
|
||
];
|