about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--app/controllers/application_controller.rb4
-rw-r--r--app/helpers/domain_control_helper.rb2
2 files changed, 3 insertions, 3 deletions
diff --git a/app/controllers/application_controller.rb b/app/controllers/application_controller.rb
index cfc93b7ce..2b58e0b90 100644
--- a/app/controllers/application_controller.rb
+++ b/app/controllers/application_controller.rb
@@ -49,11 +49,11 @@ class ApplicationController < ActionController::Base
   end
 
   def authorized_fetch_mode?
-    true
+    !(Rails.env.development? || Rails.env.test?)
   end
 
   def public_fetch_mode?
-    false
+    !authorized_fetch_mode?
   end
 
   def store_current_location
diff --git a/app/helpers/domain_control_helper.rb b/app/helpers/domain_control_helper.rb
index 4ce205504..765ffa536 100644
--- a/app/helpers/domain_control_helper.rb
+++ b/app/helpers/domain_control_helper.rb
@@ -20,6 +20,6 @@ module DomainControlHelper
   end
 
   def whitelist_mode?
-    true
+    !(Rails.env.development? || Rails.env.test?)
   end
 end