From 2fb2f1ae49e1e7e7069523f3d65f21a117571dd3 Mon Sep 17 00:00:00 2001 From: rubenwardy Date: Sat, 11 Jul 2020 04:26:50 +0100 Subject: [PATCH] Remove admin from being able to edit any comment --- app/flatpages/help/ranks_permissions.md | 4 ++-- app/models.py | 3 +-- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/app/flatpages/help/ranks_permissions.md b/app/flatpages/help/ranks_permissions.md index 972c570..94af9a3 100644 --- a/app/flatpages/help/ranks_permissions.md +++ b/app/flatpages/help/ranks_permissions.md @@ -206,7 +206,7 @@ title: Ranks and Permissions Edit Comments - ✓ + ✓ @@ -217,7 +217,7 @@ title: Ranks and Permissions ✓ ✓ - ✓ + Set Email 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 -- 2.44.0