Commit 38e610ba by Ivan

feat: import add current user

parent 2f57588a
......@@ -32,7 +32,7 @@ module SimpleController::Importable
def import
xlsx_file = params[:file] || importable_class.import_excel_klass.new(params[:uid])
response = importable_class.import_xlsx(xlsx_file, collection, **params.to_unsafe_h.symbolize_keys)
response = importable_class.import_xlsx(xlsx_file, collection, **params.to_unsafe_h.symbolize_keys.merge({ current_user: try(:current_user) }))
render json: response, status: 201
end
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment