diff --git a/changes/1925-add-15-min-interval-schedule b/changes/1925-add-15-min-interval-schedule new file mode 100644 index 0000000000..6c83ea779b --- /dev/null +++ b/changes/1925-add-15-min-interval-schedule @@ -0,0 +1 @@ +Add new 15-minute interval option to schedule page \ No newline at end of file diff --git a/frontend/utilities/constants.ts b/frontend/utilities/constants.ts index 350e596adf..49743e79be 100644 --- a/frontend/utilities/constants.ts +++ b/frontend/utilities/constants.ts @@ -7,6 +7,7 @@ export const DEFAULT_GRAVATAR_LINK = "https://fleetdm.com/images/permanent/icon-avatar-default-128x128-2x.png"; export const FREQUENCY_DROPDOWN_OPTIONS = [ + { value: 900, label: "Every 15 minutes" }, { value: 3600, label: "Every hour" }, { value: 21600, label: "Every 6 hours" }, { value: 43200, label: "Every 12 hours" },