summaryrefslogtreecommitdiff
path: root/app/controllers/concerns/controller_with_cross_project_access_check.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/controllers/concerns/controller_with_cross_project_access_check.rb')
-rw-r--r--app/controllers/concerns/controller_with_cross_project_access_check.rb4
1 files changed, 1 insertions, 3 deletions
diff --git a/app/controllers/concerns/controller_with_cross_project_access_check.rb b/app/controllers/concerns/controller_with_cross_project_access_check.rb
index 3f72f092683..eace8e9464b 100644
--- a/app/controllers/concerns/controller_with_cross_project_access_check.rb
+++ b/app/controllers/concerns/controller_with_cross_project_access_check.rb
@@ -9,9 +9,7 @@ module ControllerWithCrossProjectAccessCheck
end
def cross_project_check
- if Gitlab::CrossProjectAccess.find_check(self)&.should_run?(self)
- authorize_cross_project_page!
- end
+ authorize_cross_project_page! if Gitlab::CrossProjectAccess.find_check(self)&.should_run?(self)
end
def authorize_cross_project_page!