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

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

      feature_category :static_application_security_testing

      before_action only: [:show] do
        push_frontend_feature_flag(:security_configuration_redesign, project, default_enabled: :yaml)
      end

      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')