nas/app/controllers/api/fasp/data_sharing/v0/continuations_controller.rb
2025-05-16 12:24:02 +00:00

10 lines
312 B
Ruby

# frozen_string_literal: true
class Api::Fasp::DataSharing::V0::ContinuationsController < Api::Fasp::BaseController
def create
backfill_request = current_provider.fasp_backfill_requests.find(params[:backfill_request_id])
Fasp::BackfillWorker.perform_async(backfill_request.id)
head 204
end
end