Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert Speicher <rspeicher@gmail.com>2017-02-01 21:21:28 +0300
committerRobert Speicher <rspeicher@gmail.com>2017-02-10 19:51:14 +0300
commit191bcb4d1b5e983583e183d8945f638604c7f0e1 (patch)
tree98aa8d8ea8b6d8eb56158cde0127cbea630c610c /app/controllers/explore
parent4a9258371bf25ef0ce8687c3d7750d06b4337fe4 (diff)
Don't perform Devise trackable updates on blocked User records
Diffstat (limited to 'app/controllers/explore')
-rw-r--r--app/controllers/explore/application_controller.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/controllers/explore/application_controller.rb b/app/controllers/explore/application_controller.rb
index a1ab8b99048..baf54520b9c 100644
--- a/app/controllers/explore/application_controller.rb
+++ b/app/controllers/explore/application_controller.rb
@@ -1,5 +1,5 @@
class Explore::ApplicationController < ApplicationController
- skip_before_action :authenticate_user!, :reject_blocked!
+ skip_before_action :authenticate_user!
layout 'explore'
end