diff options
author | Richard van der Hoff <richard@matrix.org> | 2020-02-18 23:14:57 +0000 |
---|---|---|
committer | Richard van der Hoff <richard@matrix.org> | 2020-02-19 08:52:51 +0000 |
commit | a0a1fd0bec5cb596cc41c8f052a4aa0e8c01cf08 (patch) | |
tree | aabbdd6e13848ab8bc4b263dfce1df3e19efc65d /synapse/handlers/pagination.py | |
parent | Refactor the membership check methods in Auth (diff) | |
download | synapse-a0a1fd0bec5cb596cc41c8f052a4aa0e8c01cf08.tar.xz |
Add `allow_departed_users` param to `check_in_room_or_world_readable`
... and set it everywhere it's called. while we're here, rename it for consistency with `check_user_in_room` (and to help check that I haven't missed any instances)
Diffstat (limited to 'synapse/handlers/pagination.py')
-rw-r--r-- | synapse/handlers/pagination.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/synapse/handlers/pagination.py b/synapse/handlers/pagination.py index caf841a643..254a9f6856 100644 --- a/synapse/handlers/pagination.py +++ b/synapse/handlers/pagination.py @@ -335,7 +335,9 @@ class PaginationHandler(object): ( membership, member_event_id, - ) = await self.auth.check_in_room_or_world_readable(room_id, user_id) + ) = await self.auth.check_user_in_room_or_world_readable( + room_id, user_id, allow_departed_users=True + ) if source_config.direction == "b": # if we're going backwards, we might need to backfill. This |