mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-23 23:58:31 -05:00
Add Topic#max_post_number to find max post number
This commit is contained in:
parent
c4cce68613
commit
f2b5e20840
1 changed files with 4 additions and 0 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue