get_room_events isn't called anywhere
This commit is contained in:
parent
895fcb377e
commit
fda63064fc
|
@ -127,36 +127,6 @@ class _StreamToken(namedtuple("_StreamToken", "topological stream")):
|
||||||
|
|
||||||
|
|
||||||
class StreamStore(SQLBaseStore):
|
class StreamStore(SQLBaseStore):
|
||||||
@log_function
|
|
||||||
def get_room_events(self, user_id, from_key, to_key, room_id, limit=0,
|
|
||||||
direction='f', with_feedback=False):
|
|
||||||
# We deal with events request in two different ways depending on if
|
|
||||||
# this looks like an /events request or a pagination request.
|
|
||||||
is_events = (
|
|
||||||
direction == 'f'
|
|
||||||
and user_id
|
|
||||||
and is_stream_token(from_key)
|
|
||||||
and to_key and is_stream_token(to_key)
|
|
||||||
)
|
|
||||||
|
|
||||||
if is_events:
|
|
||||||
return self.get_room_events_stream(
|
|
||||||
user_id=user_id,
|
|
||||||
from_key=from_key,
|
|
||||||
to_key=to_key,
|
|
||||||
room_id=room_id,
|
|
||||||
limit=limit,
|
|
||||||
with_feedback=with_feedback,
|
|
||||||
)
|
|
||||||
else:
|
|
||||||
return self.paginate_room_events(
|
|
||||||
from_key=from_key,
|
|
||||||
to_key=to_key,
|
|
||||||
room_id=room_id,
|
|
||||||
limit=limit,
|
|
||||||
with_feedback=with_feedback,
|
|
||||||
)
|
|
||||||
|
|
||||||
@log_function
|
@log_function
|
||||||
def get_room_events_stream(self, user_id, from_key, to_key, room_id,
|
def get_room_events_stream(self, user_id, from_key, to_key, room_id,
|
||||||
limit=0, with_feedback=False):
|
limit=0, with_feedback=False):
|
||||||
|
|
Loading…
Reference in New Issue