I am building a simple messaging system with Rails3 that allows users to send private messages to each other. Each set of users can have a single stream of messages between each other (like texting)
I am confused however on the logic that is used to build the view that shows all current conversations going on for a user. This includes conversations that might only include sent messages from myself.
My schema has the following:
create_table "messages", :force => true do |t|
t.integer "from_id"
t.integer "to_id"
t.string "message"
t.datetime "created_at"
t.datetime "updated_at"
end
I would like to emulate something similar to FB messaging that shows a row for each conversation.`
Any ideas would be super helpful.
Thanks! Danny