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

14 lines
258 B
Ruby
Raw Normal View History

2018-07-20 23:25:10 +00:00
module Gitlab
module TemplateHelper
def prepare_template_environment(file)
2018-08-03 11:07:50 +00:00
return unless file
2018-07-20 23:25:10 +00:00
params[:import_export_upload] = ImportExportUpload.new(import_file: file)
2018-07-20 23:25:10 +00:00
end
def tmp_filename
SecureRandom.hex
end
end
end