mirror of
https://github.com/discourse/discourse.git
synced 2025-05-29 01:31:35 +08:00
FIX: Recovered posts with no user will be taken over by system user (#8834)
This commit is contained in:
@ -1159,7 +1159,7 @@ describe Guardian do
|
||||
PostDestroyer.new(moderator, topic.first_post).destroy
|
||||
topic.first_post.user.destroy!
|
||||
|
||||
expect(Guardian.new(moderator).can_recover_topic?(topic.reload)).to be_falsey
|
||||
expect(Guardian.new(moderator).can_recover_topic?(topic.reload)).to be_truthy
|
||||
end
|
||||
end
|
||||
end
|
||||
@ -1199,7 +1199,7 @@ describe Guardian do
|
||||
PostDestroyer.new(moderator, post).destroy
|
||||
post.user.destroy!
|
||||
|
||||
expect(Guardian.new(moderator).can_recover_post?(post.reload)).to be_falsey
|
||||
expect(Guardian.new(moderator).can_recover_post?(post.reload)).to be_truthy
|
||||
end
|
||||
end
|
||||
end
|
||||
|
Reference in New Issue
Block a user