removed actually useful code...

This commit is contained in:
Rocky Duan 2012-08-06 22:25:57 -04:00
Родитель 5615c7260f
Коммит 1d45e28bd5
1 изменённых файлов: 10 добавлений и 0 удалений

Просмотреть файл

@ -66,6 +66,16 @@ class CommentThread < Content
c c
end end
def self.search_result_to_hash(result, params={})
comment_thread = self.find(result.id)
highlight = result.highlight || {}
highlighted_body = (highlight[:body] || []).first || comment_thread.body
highlighted_title = (highlight[:title] || []).first || comment_thread.title
find(result.id).to_hash(params).merge(highlighted_body: highlighted_body, highlighted_title: highlighted_title)
end
def root_comments def root_comments
Comment.roots.where(comment_thread_id: self.id) Comment.roots.where(comment_thread_id: self.id)
end end