У меня есть такая модель:
class Lesson
include Mongoid::Document
field :title, :type => String
field :category, :type => String
field :price, :type => Float
field :description, :type => String
field :user_id, :type => String
validates_presence_of :title
validates_presence_of :category
validates_presence_of :price
validates_presence_of :user_id
attr_accessible :title, :category, :description, :price
end
И я пытаюсь сделать запрос вот так:
@lessons_by_user = Lesson.find_by_user_id current_user.id
И я получаю:
неопределенный метод `find_by_user_id 'для урока: класс
Как выполнить запрос по определенному атрибуту в MongoID?
Я знаю, как это сделать так:
@lessons = Lesson.all(:conditions=>{:user_id=>current_user.id.to_s})
но мне интересно, есть ли ярлык ...