FIX: TL4 users cannot delete others posts (#13554)

This commit is contained in:
Bianca Nenciu
2021-06-30 15:51:35 +03:00
committed by GitHub
parent 16227e38ac
commit 715ecabd85
3 changed files with 20 additions and 3 deletions

View File

@@ -190,7 +190,7 @@ module PostGuardian
# Can't delete the first post
return false if post.is_first_post?
return true if can_moderate_topic?(post.topic)
return true if is_staff? || is_category_group_moderator?(post.topic&.category)
# Can't delete posts in archived topics unless you are staff
return false if post.topic&.archived?