2018-10-22 03:00:50 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2018-07-20 19:25:10 -04:00
|
|
|
module Gitlab
|
|
|
|
module TemplateHelper
|
2018-07-26 06:55:21 -04:00
|
|
|
def prepare_template_environment(file)
|
2018-08-03 07:07:50 -04:00
|
|
|
return unless file
|
2018-07-20 19:25:10 -04:00
|
|
|
|
2018-08-29 09:41:56 -04:00
|
|
|
params[:import_export_upload] = ImportExportUpload.new(import_file: file)
|
2018-07-20 19:25:10 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def tmp_filename
|
|
|
|
SecureRandom.hex
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|