RUBYCRITIC
class Accounts::Create::EmbedCompanySiteJob < ApplicationJob - Accounts::Create::EmbedCompanySiteJob has no descriptive comment
self.queue_adapter = :good_job
def perform(account_id) - Accounts::Create::EmbedCompanySiteJob#perform doesn't depend on instance state (maybe move it to another class?)
account = Account.find(account_id)
Accounts::Create::EmbededCompanySite.new(account).call
end
end