1
0
mirror of https://github.com/glitch-soc/mastodon.git synced 2025-02-20 01:23:50 -05:00
Akihiko Odaki 613e7c7521 Rename ResolveRemoteAccountService to ResolveAccountService ()
The service used to be named ResolveRemoteAccountService resolves local
accounts as well.
2018-01-22 14:25:09 +01:00

12 lines
212 B
Ruby

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