mirror of
https://github.com/lunaisnotaboy/mastodon.git
synced 2024-11-01 20:45:56 +00:00
23aeef52cc
* Remove Salmon and PubSubHubbub endpoints * Add error when trying to follow OStatus accounts * Fix new accounts not being created in ResolveAccountService
10 lines
165 B
Ruby
10 lines
165 B
Ruby
# frozen_string_literal: true
|
|
|
|
class AfterRemoteFollowWorker
|
|
include Sidekiq::Worker
|
|
|
|
sidekiq_options queue: 'pull', retry: 5
|
|
|
|
def perform(follow_id); end
|
|
end
|