mirror of
https://github.com/whippyshou/mastodon
synced 2024-11-29 15:28:27 +09:00
8 lines
156 B
Ruby
8 lines
156 B
Ruby
|
class ProcessingWorker
|
||
|
include Sidekiq::Worker
|
||
|
|
||
|
def perform(account_id, body)
|
||
|
ProcessFeedService.new.call(body, Account.find(account_id))
|
||
|
end
|
||
|
end
|