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