diff options
author | Erik Johnston <erik@matrix.org> | 2019-01-28 21:09:45 +0000 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2019-01-29 11:56:20 +0000 |
commit | 7709d2bd167e27493b134e938410c307f8c10396 (patch) | |
tree | 50f41d8957288a492a066de6d1fb8b7ff0092c77 /synapse/api | |
parent | Add RoomVersions.V3 constant, without enabling it (diff) | |
download | synapse-7709d2bd167e27493b134e938410c307f8c10396.tar.xz |
Implement rechecking of redactions
Diffstat (limited to 'synapse/api')
-rw-r--r-- | synapse/api/auth.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/synapse/api/auth.py b/synapse/api/auth.py index 7b213e54c8..963e0e7d60 100644 --- a/synapse/api/auth.py +++ b/synapse/api/auth.py @@ -627,7 +627,7 @@ class Auth(object): defer.returnValue(auth_ids) - def check_redaction(self, event, auth_events): + def check_redaction(self, room_version, event, auth_events): """Check whether the event sender is allowed to redact the target event. Returns: @@ -640,7 +640,7 @@ class Auth(object): AuthError if the event sender is definitely not allowed to redact the target event. """ - return event_auth.check_redaction(event, auth_events) + return event_auth.check_redaction(room_version, event, auth_events) @defer.inlineCallbacks def check_can_change_room_list(self, room_id, user): |