From 54a9641dee5c3aa5b79a328b1c58b5fbf1d347c2 Mon Sep 17 00:00:00 2001 From: Kevin McConnell Date: Thu, 11 Dec 2025 12:22:10 +0000 Subject: [PATCH] Also set multi_tenant for SaaS development --- saas/config/environments/development.rb | 3 +++ 1 file changed, 3 insertions(+) diff --git a/saas/config/environments/development.rb b/saas/config/environments/development.rb index eb82f052b..ac3f546af 100644 --- a/saas/config/environments/development.rb +++ b/saas/config/environments/development.rb @@ -1,4 +1,7 @@ Rails.application.configure do + # SaaS version of Fizzy is multi-tenanted + config.x.multi_tenant.enabled = true + if Rails.root.join("tmp/structured-logging.txt").exist? config.structured_logging.logger = ActiveSupport::Logger.new("log/structured-development.log") end