From eea5780bb603ca24f0a699fff96d0e01181fa55f Mon Sep 17 00:00:00 2001 From: Blake Matthes Date: Tue, 23 Jun 2026 14:24:09 -0500 Subject: [PATCH] refactor(demand mgt): new setting to make the time more dynamic --- backend/system/settingsBase.controller.ts | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/backend/system/settingsBase.controller.ts b/backend/system/settingsBase.controller.ts index aac87db..7c6c72c 100644 --- a/backend/system/settingsBase.controller.ts +++ b/backend/system/settingsBase.controller.ts @@ -410,6 +410,17 @@ const newSettings: NewSetting[] = [ roles: ["admin"], seedVersion: 1, }, + { + name: "defaultOrderTime", + value: "8", + active: true, + description: + "What time will we be using as our default time for orders that we do not pass a time over.", + moduleName: "demandManagement", + settingType: "standard", + roles: ["admin"], + seedVersion: 1, + }, ]; export const baseSettingValidationCheck = async () => {