jam-cloud/web/app/views/api_users/text_message_index.rabl

11 lines
210 B
Ruby

collection @text_messages
attributes :id, :source_user_id, :target_user_id, :message, :created_at
node :source_user do |msg|
attributes :id, :name
end
node :target_user do |msg|
attributes :id, :name
end