1
0
Fork 0
mirror of https://github.com/mastodon/mastodon.git synced 2024-08-20 21:08:15 -07:00
mastodon/app/workers/verify_account_links_worker.rb

20 lines
462 B
Ruby
Raw Normal View History

# frozen_string_literal: true
class VerifyAccountLinksWorker
include Sidekiq::Worker
2023-10-03 01:09:00 -07:00
sidekiq_options queue: 'default', retry: false, lock: :until_executed, lock_ttl: 1.hour.to_i
def perform(account_id)
account = Account.find(account_id)
account.fields.each do |field|
VerifyLinkService.new.call(field) if field.requires_verification?
end
account.save! if account.changed?
rescue ActiveRecord::RecordNotFound
true
end
end