1
0
mirror of https://github.com/glitch-soc/mastodon.git synced 2025-02-16 07:33:51 -05:00
tootlab-mastodon/app/workers/resolve_remote_account_worker.rb

12 lines
224 B
Ruby

# 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