houdini/app/controllers/nonprofits/imports_controller.rb

26 lines
725 B
Ruby
Raw Normal View History

# frozen_string_literal: true
2020-06-12 20:03:43 +00:00
# License: AGPL-3.0-or-later WITH WTO-AP-3.0-or-later
# Full license explanation at https://github.com/houdiniproject/houdini/blob/master/LICENSE
module Nonprofits
class ImportsController < ApplicationController
include Controllers::Nonprofit::Current
include Controllers::Nonprofit::Authorization
before_action :authenticate_nonprofit_user!
# post /nonprofits/:nonprofit_id/imports
def create
render_json do
2020-09-01 23:16:17 +00:00
request = ImportRequest.create(import_params)
ImportCreationJob.perform_later(request, current_user)
end
end
2019-08-06 14:07:04 +00:00
private
def import_params
2020-09-01 23:16:17 +00:00
params.permit(:nonprofit_id, :import_file, header_matches: {})
2019-08-06 14:07:04 +00:00
end
end
end