0
0
Fork 0
mirror of https://github.com/lunaisnotaboy/mastodon.git synced 2025-04-26 03:45:14 +00:00
mastodon/app/workers/resolve_remote_account_worker.rb

12 lines
224 B
Ruby
Raw Normal View History

# frozen_string_literal: true
class ResolveRemoteAccountWorker
include Sidekiq::Worker
sidekiq_options queue: 'pull', unique: :until_executed
def perform(uri)
ResolveRemoteAccountService.new.call(uri)
end
end