mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 01:47:22 +08:00
FIX: Remove user_deleted when staff recovers post (#10245)
This commit is contained in:
parent
3252cb847c
commit
62d5a9690f
|
@ -104,7 +104,9 @@ class PostDestroyer
|
|||
end
|
||||
|
||||
def staff_recovered
|
||||
@post.update_column(:user_id, Discourse::SYSTEM_USER_ID) if !@post.user_id
|
||||
new_post_attrs = { user_deleted: false }
|
||||
new_post_attrs[:user_id] = Discourse::SYSTEM_USER_ID if !@post.user_id
|
||||
@post.update_columns(new_post_attrs)
|
||||
@post.recover!
|
||||
|
||||
mark_topic_changed
|
||||
|
|
|
@ -244,6 +244,14 @@ describe PostDestroyer do
|
|||
end
|
||||
|
||||
context "recovered by admin" do
|
||||
it "should set user_deleted to false" do
|
||||
PostDestroyer.new(@user, @reply).destroy
|
||||
expect(@reply.reload.user_deleted).to eq(true)
|
||||
|
||||
PostDestroyer.new(admin, @reply).recover
|
||||
expect(@reply.reload.user_deleted).to eq(false)
|
||||
end
|
||||
|
||||
it "should increment the user's post count" do
|
||||
PostDestroyer.new(moderator, @reply).destroy
|
||||
expect(@user.reload.user_stat.topic_count).to eq(1)
|
||||
|
|
Loading…
Reference in New Issue
Block a user