mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2025-05-08 13:15:05 -04:00
Add profile data to the room_membership table for joins
This commit is contained in:
parent
de796f27e6
commit
c45d8e9ba2
4 changed files with 110 additions and 0 deletions
|
@ -541,6 +541,9 @@ class StreamStore(SQLBaseStore):
|
|||
def get_room_max_stream_ordering(self):
|
||||
return self._stream_id_gen.get_current_token()
|
||||
|
||||
def get_room_min_stream_ordering(self):
|
||||
return self._backfill_id_gen.get_current_token()
|
||||
|
||||
def get_stream_token_for_event(self, event_id):
|
||||
"""The stream token for an event
|
||||
Args:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue