diff options
author | Erik Johnston <erik@matrix.org> | 2020-09-08 15:00:17 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-08 15:00:17 +0100 |
commit | 0f545e6b9670fd780579445ff68dba95a8e08545 (patch) | |
tree | 54f2aafe4a391ae313f950490250b1dac6ffdd93 /synapse/handlers/receipts.py | |
parent | Use the right constructor for log records (#8278) (diff) | |
download | synapse-0f545e6b9670fd780579445ff68dba95a8e08545.tar.xz |
Clean up types for PaginationConfig (#8250)
This removes `SourcePaginationConfig` and `get_pagination_rows`. The reasoning behind this is that these generic classes/functions erased the types of the IDs it used (i.e. instead of passing around `StreamToken` it'd pass in e.g. `token.room_key`, which don't have uniform types).
Diffstat (limited to 'synapse/handlers/receipts.py')
-rw-r--r-- | synapse/handlers/receipts.py | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/synapse/handlers/receipts.py b/synapse/handlers/receipts.py index 2cc6c2eb68..bdd8e52edd 100644 --- a/synapse/handlers/receipts.py +++ b/synapse/handlers/receipts.py @@ -142,18 +142,3 @@ class ReceiptEventSource: def get_current_key(self, direction="f"): return self.store.get_max_receipt_stream_id() - - async def get_pagination_rows(self, user, config, key): - to_key = int(config.from_key) - - if config.to_key: - from_key = int(config.to_key) - else: - from_key = None - - room_ids = await self.store.get_rooms_for_user(user.to_string()) - events = await self.store.get_linearized_receipts_for_rooms( - room_ids, from_key=from_key, to_key=to_key - ) - - return (events, to_key) |