diff options
Diffstat (limited to 'app')
-rw-r--r-- | app/controllers/application_controller.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/controllers/application_controller.rb b/app/controllers/application_controller.rb index 91f76d311..c190abdf2 100644 --- a/app/controllers/application_controller.rb +++ b/app/controllers/application_controller.rb @@ -3,11 +3,11 @@ class ApplicationController < ActionController::Base # For APIs, you may want to use :null_session instead. protect_from_forgery with: :exception - force_ssl if: "ENV['LOCAL_HTTPS'] == 'true'" + force_ssl if: "Rails.env.production? && ENV['LOCAL_HTTPS'] == 'true'" # Profiling before_action do - if (current_user && current_user.admin?) || Rails.env == 'development' + if (current_user && current_user.admin?) || Rails.env.development? Rack::MiniProfiler.authorize_request end end |