У меня есть следующие модели:
class Feed
include Mongoid::Document
field :name
field :host
field :user_name
...
has_many :stores
end
class Store
include Mongoid::Document
field :name
field :store_id
field :dealfeeds, type: Array
...
belongs_to :feed
end
Но когда я пытаюсь добавить магазин через каналы, я получаю следующие ошибки:
>> Feed.stores << Store.new
NoMethodError: undefined method `stores' for Feed:Class
>> Feed[:stores] << Store.new
NoMethodError: undefined method `[]' for Feed:Class