mirror of
https://github.com/lingble/chatwoot.git
synced 2025-11-20 21:15:01 +00:00
- UI will show the breach in the conversation list. - UI will show the breach in the conversation header. Fixes: https://linear.app/chatwoot/issue/CW-3146/update-the-ui-to-show-the-breach-in-the-conversation-list Fixes: https://linear.app/chatwoot/issue/CW-3144/ui-update-to-show-the-breachgoing-to-breach
16 lines
316 B
Ruby
16 lines
316 B
Ruby
module PushDataHelper
|
|
extend ActiveSupport::Concern
|
|
|
|
def push_event_data
|
|
Conversations::EventDataPresenter.new(self).push_data
|
|
end
|
|
|
|
def lock_event_data
|
|
Conversations::EventDataPresenter.new(self).lock_data
|
|
end
|
|
|
|
def webhook_data
|
|
Conversations::EventDataPresenter.new(self).push_data
|
|
end
|
|
end
|