2020-12-03 04:22:51 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class REST::ChatMessageSerializer < ActiveModel::Serializer
|
2020-12-04 03:27:09 +00:00
|
|
|
attributes :id, :text_html, :text, :language, :from_account_id,
|
2020-12-16 00:31:30 +00:00
|
|
|
:chat_conversation_id, :created_at, :expires_at
|
2020-12-03 04:22:51 +00:00
|
|
|
|
|
|
|
def id
|
|
|
|
object.id.to_s
|
|
|
|
end
|
2020-12-03 22:13:11 +00:00
|
|
|
|
2020-12-04 03:27:09 +00:00
|
|
|
def text_html
|
|
|
|
Formatter.instance.chatMessageText(object).strip
|
|
|
|
end
|
|
|
|
|
2020-12-03 22:13:11 +00:00
|
|
|
def from_account_id
|
|
|
|
object.from_account_id.to_s
|
|
|
|
end
|
|
|
|
|
|
|
|
def chat_conversation_id
|
|
|
|
object.chat_conversation_id.to_s
|
|
|
|
end
|
|
|
|
|
2020-12-03 04:22:51 +00:00
|
|
|
end
|