diff options
author | Richard van der Hoff <1389908+richvdh@users.noreply.github.com> | 2019-07-17 19:08:02 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-07-17 19:08:02 +0100 |
commit | 9c70a02a9cddf36521c3d6ae6f72e3b46a5f4c2d (patch) | |
tree | 832fb0a1fa57b763d5cdd4079d85d55f4c1be965 /synapse/api | |
parent | Improve `Depends` specs in debian package. (#5675) (diff) | |
download | synapse-9c70a02a9cddf36521c3d6ae6f72e3b46a5f4c2d.tar.xz |
Ignore redactions of m.room.create events (#5701)
Diffstat (limited to 'synapse/api')
-rw-r--r-- | synapse/api/auth.py | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/synapse/api/auth.py b/synapse/api/auth.py index d9e943c39c..7ce6540bdd 100644 --- a/synapse/api/auth.py +++ b/synapse/api/auth.py @@ -606,21 +606,6 @@ class Auth(object): defer.returnValue(auth_ids) - def check_redaction(self, room_version, event, auth_events): - """Check whether the event sender is allowed to redact the target event. - - Returns: - True if the the sender is allowed to redact the target event if the - target event was created by them. - False if the sender is allowed to redact the target event with no - further checks. - - Raises: - AuthError if the event sender is definitely not allowed to redact - the target event. - """ - return event_auth.check_redaction(room_version, event, auth_events) - @defer.inlineCallbacks def check_can_change_room_list(self, room_id, user): """Check if the user is allowed to edit the room's entry in the |