17 lines
478 B
Ruby
17 lines
478 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Projects
|
|
module Security
|
|
class ConfigurationController < Projects::ApplicationController
|
|
include SecurityAndCompliancePermissions
|
|
|
|
feature_category :static_application_security_testing
|
|
|
|
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')
|