From 2339a75d073cef4428c7b7838ed0555febe31e58 Mon Sep 17 00:00:00 2001 From: jtricerolph Date: Thu, 2 Jul 2026 00:24:11 +0000 Subject: [PATCH] Add Workforce and SMTP integrations to settings schema Co-Authored-By: Claude Sonnet 4.6 --- src/integrations/schema.js | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/src/integrations/schema.js b/src/integrations/schema.js index b26e4a2..194c31d 100644 --- a/src/integrations/schema.js +++ b/src/integrations/schema.js @@ -27,6 +27,16 @@ export const INTEGRATIONS = { configFields: ['host', 'port', 'database', 'graphql_endpoint', 'username'], secretFields: ['password'], }, + workforce: { + name: 'Workforce', + configFields: ['base_url', 'sync_hours'], + secretFields: ['email', 'password'], + }, + smtp: { + name: 'SMTP Email', + configFields: ['host', 'port', 'from'], + secretFields: ['user', 'pass'], + }, } export const MASKED = '••••••••'