From 51d98ea7282a1baa30d63e4b56dacaacf2a94b26 Mon Sep 17 00:00:00 2001 From: samyou-softwire Date: Wed, 29 Apr 2026 15:47:38 +0100 Subject: [PATCH] Revert "CLDC-4332: TEMP: Add MHCLG filter for review apps" This reverts commit b65c630edea1f06403b4f837ec79d2541b7fb46b. --- app/services/feature_toggle.rb | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/app/services/feature_toggle.rb b/app/services/feature_toggle.rb index 6e97f0669..7404309f2 100644 --- a/app/services/feature_toggle.rb +++ b/app/services/feature_toggle.rb @@ -38,8 +38,6 @@ class FeatureToggle # IDs of organisations a user must be in to be allowed the support role # if nil this feature will be disabled def self.support_organisation_allow_list - return [1] if Rails.env.production? - - [Organisation.find_by(name: "MHCLG").id] if Rails.env.review? + [1] if Rails.env.production? end end