14 lines
231 B
Ruby
14 lines
231 B
Ruby
class Conversation < ActiveRecord::Base
|
|
|
|
|
|
has_many :thing_conversations
|
|
|
|
#has_many :things, :through => :thing_conversations
|
|
|
|
has_many :customer_messages
|
|
|
|
#accepts_nested_attributes_for :customer_messages
|
|
|
|
|
|
end
|