8 lines
173 B
Ruby
8 lines
173 B
Ruby
class XmppExchangeContactsJob < ApplicationJob
|
|
queue_as :default
|
|
|
|
def perform(inviter, invitee)
|
|
EjabberdManager::ExchangeContacts.call(inviter:, invitee:)
|
|
end
|
|
end
|