gitlab-ce/app/helpers/ci/secure_files_helper.rb

12 lines
276 B
Ruby

# frozen_string_literal: true
module Ci
module SecureFilesHelper
def show_secure_files_setting(project, user)
return false if user.nil?
return false unless Gitlab.config.ci_secure_files.enabled
user.can?(:read_secure_files, project)
end
end
end