jam-cloud/web/app/views/api_text_messages/index.rabl

11 lines
244 B
Ruby

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