about summary refs log tree commit diff
path: root/app/controllers/application_controller.rb
diff options
context:
space:
mode:
authorEugen Rochko <eugen@zeonfederated.com>2016-08-24 19:23:37 +0200
committerEugen Rochko <eugen@zeonfederated.com>2016-08-24 19:23:37 +0200
commitbc0692d75b1eeb7bc439869d892da9b835b40e0d (patch)
tree97094799e3c9234eefba49a068757c277e5e2628 /app/controllers/application_controller.rb
parentd23671b5fd910e1c59f52938789a8a3321724ef6 (diff)
Removing mini-profiler that doesn't work, formatting timelines a bit better
Diffstat (limited to 'app/controllers/application_controller.rb')
-rw-r--r--app/controllers/application_controller.rb7
1 files changed, 0 insertions, 7 deletions
diff --git a/app/controllers/application_controller.rb b/app/controllers/application_controller.rb
index 399faa21e..73de1838c 100644
--- a/app/controllers/application_controller.rb
+++ b/app/controllers/application_controller.rb
@@ -5,13 +5,6 @@ class ApplicationController < ActionController::Base
 
   force_ssl if: "Rails.env.production? && ENV['LOCAL_HTTPS'] == 'true'"
 
-  # Profiling
-  before_action do
-    if (current_user && current_user.admin?) || Rails.env.development?
-      Rack::MiniProfiler.authorize_request
-    end
-  end
-
   helper_method :current_account
 
   protected