fix: Automation loop on conversation_update (#4071)

This commit is contained in:
Sojan Jose
2022-02-25 18:01:21 +05:30
committed by GitHub
parent cc74bebc0f
commit 4ca66c1195
2 changed files with 17 additions and 0 deletions

View File

@@ -183,6 +183,9 @@ class Conversation < ApplicationRecord
end
def notify_conversation_updation
return unless previous_changes.keys.present? && (previous_changes.keys & %w[team_id assignee_id status snoozed_until
custom_attributes]).present?
dispatcher_dispatch(CONVERSATION_UPDATED)
end