gab-social/app/serializers/rest/chat_message_serializer.rb

11 lines
232 B
Ruby
Raw Normal View History

# 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