Allow moderators to edit ThreadReplies

This commit is contained in:
rubenwardy 2022-01-21 14:30:12 +00:00
parent 97e2e1c16e
commit fe2d08c395
1 changed files with 1 additions and 1 deletions

View File

@ -137,7 +137,7 @@ class ThreadReply(db.Model):
raise Exception("Unknown permission given to ThreadReply.checkPerm()")
if perm == Permission.EDIT_REPLY:
return user == self.author and user.rank.atLeast(UserRank.MEMBER) and not self.thread.locked
return user.rank.atLeast(UserRank.MEMBER if user == self.author else UserRank.MODERATOR) and not self.thread.locked
elif perm == Permission.DELETE_REPLY:
return user.rank.atLeast(UserRank.MODERATOR) and self.thread.replies[0] != self