diff options
author | rubenwardy <rw@rubenwardy.com> | 2020-07-11 04:26:50 +0100 |
---|---|---|
committer | rubenwardy <rw@rubenwardy.com> | 2020-07-11 04:26:50 +0100 |
commit | 2fb2f1ae49e1e7e7069523f3d65f21a117571dd3 (patch) | |
tree | 0f5799da05a9e1635bf7087abea88ba095e71fca /app/models.py | |
parent | d5b8dd89095d0d8ed91178f4ee23f610aa7b6917 (diff) | |
download | cheatdb-2fb2f1ae49e1e7e7069523f3d65f21a117571dd3.tar.xz |
Remove admin from being able to edit any comment
Diffstat (limited to 'app/models.py')
-rw-r--r-- | app/models.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/app/models.py b/app/models.py index 4ab4412..58cf992 100644 --- a/app/models.py +++ b/app/models.py @@ -1148,8 +1148,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) or \ - user.rank.atLeast(UserRank.ADMIN) + return user == self.author and user.rank.atLeast(UserRank.MEMBER) and not self.thread.locked elif perm == Permission.DELETE_REPLY: return user.rank.atLeast(UserRank.MODERATOR) and self.thread.replies[0] != self |