2
0
mirror of https://github.com/moebooru/moebooru synced 2025-08-22 01:47:48 +00:00
moebooru/app/models/post/comment_methods.rb
petopeto 30ff4fccd3 --HG--
branch : moe
extra : convert_revision : svn%3A2d28d66d-8d94-df11-8c86-00306ef368cb/trunk/moe%405
2010-04-20 23:05:11 +00:00

10 lines
232 B
Ruby

module PostCommentMethods
def self.included(m)
m.has_many :comments, :order => "id"
end
def recent_comments
Comment.find(:all, :conditions => ["post_id = ?", id], :order => "id desc", :limit => 6).reverse
end
end