summaryrefslogtreecommitdiff
path: root/app/controllers/projects/security/configuration_controller.rb
blob: 444f4783a19c358260142a1af24e8540ee7630e8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# frozen_string_literal: true

module Projects
  module Security
    class ConfigurationController < Projects::ApplicationController
      include SecurityAndCompliancePermissions

      feature_category :static_application_security_testing, [:show]

      def show
        render_403 unless can?(current_user, :read_security_configuration, project)
      end
    end
  end
end

Projects::Security::ConfigurationController.prepend_mod_with('Projects::Security::ConfigurationController')