feat(ee): Add reporting events for bots (#9027)
Added a new event conversation_bot_resolved and added a job to auto resolve the bot conversations if there was no activity for the last 1 hour.
This commit is contained in:
@@ -35,12 +35,12 @@ class ResponseDocument < ApplicationRecord
|
||||
def ensure_content
|
||||
return unless content.nil?
|
||||
|
||||
ResponseDocumentContentJob.perform_later(self)
|
||||
ResponseBot::ResponseDocumentContentJob.perform_later(self)
|
||||
end
|
||||
|
||||
def handle_content_change
|
||||
return unless saved_change_to_content? && content.present?
|
||||
|
||||
ResponseBuilderJob.perform_later(self)
|
||||
ResponseBot::ResponseBuilderJob.perform_later(self)
|
||||
end
|
||||
end
|
||||
|
||||
Reference in New Issue
Block a user