mastodon/app/workers/resolve_account_worker.rb

10 lines
225 B
Ruby

# frozen_string_literal: true
class ResolveAccountWorker < ApplicationWorker
sidekiq_options queue: 'pull', lock: :until_executed, lock_ttl: 1.day.to_i
def perform(uri)
ResolveAccountService.new.call(uri)
end
end