Chatwoot/app/models/concerns/round_robin_handler.rb
Sojan Jose 713fdb44ee
feat (ee): APIs to configure an auto assignment limit for inboxes (#4672)
Co-authored-by: Pranav Raj S <pranav@chatwoot.com>
2022-06-13 20:18:38 +05:30

26 lines
733 B
Ruby

module RoundRobinHandler
extend ActiveSupport::Concern
include Events::Types
included do
after_save :run_round_robin
end
private
def run_round_robin
# Round robin kicks in on conversation create & update
# run it only when conversation status changes to open
return unless conversation_status_changed_to_open?
return unless should_round_robin?
::RoundRobin::AssignmentService.new(conversation: self, allowed_member_ids: inbox.member_ids_with_assignment_capacity).perform
end
def should_round_robin?
return false unless inbox.enable_auto_assignment?
# run only if assignee is blank or doesn't have access to inbox
assignee.blank? || inbox.members.exclude?(assignee)
end
end