2021-11-19 06:22:27 +00:00
|
|
|
class Inboxes::FetchImapEmailInboxesJob < ApplicationJob
|
|
|
|
queue_as :low
|
|
|
|
|
|
|
|
def perform
|
|
|
|
Inbox.where(channel_type: 'Channel::Email').all.each do |inbox|
|
2021-12-21 17:18:01 +00:00
|
|
|
::Inboxes::FetchImapEmailsJob.perform_later(inbox.channel) if inbox.channel.imap_enabled
|
2021-11-19 06:22:27 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|