009abc1948
- Unique validations for Inbox members and Team member objects - Move notification processing to Async
9 lines
269 B
Ruby
9 lines
269 B
Ruby
class Inboxes::FetchImapEmailInboxesJob < ApplicationJob
|
|
queue_as :low
|
|
|
|
def perform
|
|
Inbox.where(channel_type: 'Channel::Email').all.each do |inbox|
|
|
::Inboxes::FetchImapEmailsJob.perform_later(inbox.channel) if inbox.channel.imap_enabled
|
|
end
|
|
end
|
|
end
|