Add Topic#max_post_number to find max post number

This commit is contained in:
Chris Hunt 2013-05-25 17:37:23 -07:00
parent c4cce68613
commit f2b5e20840

View file

@ -476,6 +476,10 @@ class Topic < ActiveRecord::Base
first_post_number
end
def max_post_number
posts.maximum(:post_number).to_i
end
def move_posts(moved_by, post_ids, opts)
topic = nil