summaryrefslogtreecommitdiff
path: root/app/controllers/projects/security/configuration_controller.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/controllers/projects/security/configuration_controller.rb')
-rw-r--r--app/controllers/projects/security/configuration_controller.rb8
1 files changed, 0 insertions, 8 deletions
diff --git a/app/controllers/projects/security/configuration_controller.rb b/app/controllers/projects/security/configuration_controller.rb
index cafc392134b..bc4e58e54a9 100644
--- a/app/controllers/projects/security/configuration_controller.rb
+++ b/app/controllers/projects/security/configuration_controller.rb
@@ -8,16 +8,8 @@ module Projects
feature_category :static_application_security_testing
def show
- return render_404 unless feature_enabled?
-
render_403 unless can?(current_user, :read_security_configuration, project)
end
-
- private
-
- def feature_enabled?
- ::Feature.enabled?(:secure_security_and_compliance_configuration_page_on_ce, @project, default_enabled: :yaml)
- end
end
end
end