24 lines
466 B
Ruby
24 lines
466 B
Ruby
# frozen_string_literal: true
|
|
|
|
class REST::ChatMessageSerializer < ActiveModel::Serializer
|
|
attributes :id, :text_html, :text, :language, :from_account_id,
|
|
:chat_conversation_id, :created_at, :expires_at
|
|
|
|
def id
|
|
object.id.to_s
|
|
end
|
|
|
|
def text_html
|
|
Formatter.instance.chatMessageText(object).strip
|
|
end
|
|
|
|
def from_account_id
|
|
object.from_account_id.to_s
|
|
end
|
|
|
|
def chat_conversation_id
|
|
object.chat_conversation_id.to_s
|
|
end
|
|
|
|
end
|