Allow users to schedule queries to run every 15 minutes (#1928)

* Add new 15-min interval option to schedule
This commit is contained in:
gillespi314 2021-09-03 11:26:30 -05:00 committed by GitHub
parent 6d2ae02efd
commit 56157617c6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 0 deletions

View file

@ -0,0 +1 @@
Add new 15-minute interval option to schedule page

View file

@ -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" },