Ivan Palamarchuk: Хорошо, с ajax давно хотел познакомиться. Но я пока не понимаю как ajax может помочь мне с выводом информации из одного контроллера, на вьюху другого. Объясните?
thepry: Единственное, что у меня получилось это вот -
.item{:class => ("sender" if message.user == message.conversation.sender)}
Впринципе и этого достаточно, но хотелось бы вас послушать.
У меня есть отправитель и получатель. Вот так выглядят таблицы:
class CreateConversations < ActiveRecord::Migration
def change
create_table :conversations do |t|
t.integer :sender_id
t.integer :recipient_id
t.timestamps
end
end
end
class CreateMessages < ActiveRecord::Migration
def change
create_table :messages do |t|
t.text :body
t.references :conversation, index: true
t.references :user, index: true
t.boolean :read, :default => false
t.timestamps
end
end
end