This commit is contained in:
Godfrey Chan 2013-12-13 09:06:49 -08:00
parent 9cecabd023
commit e41eecb91b
2 changed files with 2 additions and 4 deletions

View File

@ -61,10 +61,7 @@ class Post < ActiveRecord::Base
end
def self.find_by_detail(key, value)
includes(:post_details).where( "post_details.key = ? AND " +
"post_details.value = ?",
key,
value ).first
includes(:post_details).where(post_details: { key: key, value: value }).first
end
def add_detail(key, value, extra = nil)

View File

@ -242,6 +242,7 @@ class TopicQuery
else
result = result.where('topics.category_id IS NULL')
end
result = result.references(:categories)
end
result