2015-01-12 06:20:19 +00:00
|
|
|
collection @text_messages
|
|
|
|
|
|
|
|
|
|
attributes :id, :source_user_id, :target_user_id, :message, :created_at
|
|
|
|
|
|
2021-09-14 17:17:31 +00:00
|
|
|
child :source_user => :source_user do |msg|
|
2021-09-20 08:52:01 +00:00
|
|
|
attributes :id, :name
|
2015-01-12 06:20:19 +00:00
|
|
|
end
|
|
|
|
|
|
2021-09-14 17:17:31 +00:00
|
|
|
child :target_user => :target_user do |msg|
|
2021-09-20 08:52:01 +00:00
|
|
|
attributes :id, :name
|
2015-01-12 06:20:19 +00:00
|
|
|
end
|