9a43c51085
Progress on dms, code cleanup
11 lines
232 B
Ruby
11 lines
232 B
Ruby
# frozen_string_literal: true
|
|
|
|
class REST::ChatMessageSerializer < ActiveModel::Serializer
|
|
attributes :id, :text, :language, :from_account_id,
|
|
:chat_conversation_id, :created_at
|
|
|
|
def id
|
|
object.id.to_s
|
|
end
|
|
end
|