0
0
Fork 0

Fixing more configuration issues with ActionCable

This commit is contained in:
Eugen Rochko 2016-08-18 18:39:35 +02:00
parent 5a8c149f6b
commit 8985f8e66c
4 changed files with 9 additions and 5 deletions

View file

@ -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