From 8aa5d545100548826159e4161879ac4a37bbbb6c Mon Sep 17 00:00:00 2001 From: Mattsson <111893710+mattssonn@users.noreply.github.com> Date: Mon, 7 Sep 2026 15:25:34 +0200 Subject: [PATCH] chore(domains): add solbo.accounted.se to the production host inventory (#2378) Solbo was provisioned on prod on 2026-09-01 (team ce8993e5, brand 6e3c78af) but never added to CUSTOMER_PRODUCTION_WHITE_LABEL_HOSTS. The namespace rule already protects the host; the set is the checked-in inventory the tests pin host by host, and it was stale. Claude-Session: https://claude.ai/code/session_01NUNB7qjua8EUaJmZgfFscx Co-authored-by: Claude Fable 5.1 --- lib/domains/__tests__/production-white-label-backend.test.ts | 1 + lib/domains/production-white-label-backend.ts | 1 + 2 files changed, 2 insertions(+) diff --git a/lib/domains/__tests__/production-white-label-backend.test.ts b/lib/domains/__tests__/production-white-label-backend.test.ts index 954fd926..ead1ccf0 100644 --- a/lib/domains/__tests__/production-white-label-backend.test.ts +++ b/lib/domains/__tests__/production-white-label-backend.test.ts @@ -17,6 +17,7 @@ const APPROVED_PRODUCTION_HOSTS = [ 'improveone.accounted.se', 'm360.accounted.se', 'redovisningskompaniet.accounted.se', + 'solbo.accounted.se', 'willem.accounted.se', 'ziffr.accounted.se', ] diff --git a/lib/domains/production-white-label-backend.ts b/lib/domains/production-white-label-backend.ts index 30926d10..93ae4dbc 100644 --- a/lib/domains/production-white-label-backend.ts +++ b/lib/domains/production-white-label-backend.ts @@ -39,6 +39,7 @@ const CUSTOMER_PRODUCTION_WHITE_LABEL_HOSTS = new Set([ 'improveone.accounted.se', 'm360.accounted.se', 'redovisningskompaniet.accounted.se', + 'solbo.accounted.se', 'willem.accounted.se', 'ziffr.accounted.se', ])