mirror of
https://github.com/mastodon/mastodon.git
synced 2025-05-07 12:16:14 +00:00
11 lines
312 B
Ruby
11 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
|