11 lines
210 B
Plaintext
11 lines
210 B
Plaintext
|
|
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
|