gitlab-org--gitlab-foss/lib/gitlab/template_helper.rb

14 lines
258 B
Ruby

module Gitlab
module TemplateHelper
def prepare_template_environment(file)
return unless file
params[:import_export_upload] = ImportExportUpload.new(import_file: file)
end
def tmp_filename
SecureRandom.hex
end
end
end