debian-mirror-gitlab/lib/gitlab/template_helper.rb
2018-12-13 13:39:08 +05:30

16 lines
289 B
Ruby

# frozen_string_literal: true
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