From 56157617c62dd7ab6aa0a11a71f28ac4d69cf496 Mon Sep 17 00:00:00 2001 From: gillespi314 <73313222+gillespi314@users.noreply.github.com> Date: Fri, 3 Sep 2021 11:26:30 -0500 Subject: [PATCH] Allow users to schedule queries to run every 15 minutes (#1928) * Add new 15-min interval option to schedule --- changes/1925-add-15-min-interval-schedule | 1 + frontend/utilities/constants.ts | 1 + 2 files changed, 2 insertions(+) create mode 100644 changes/1925-add-15-min-interval-schedule 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" },