MatrixSynapse/synapse/rest/client
Eric Eastwood a6f1a3abec
Add MSC3030 experimental client and federation API endpoints to get the closest event to a given timestamp (#9445)
MSC3030: https://github.com/matrix-org/matrix-doc/pull/3030

Client API endpoint. This will also go and fetch from the federation API endpoint if unable to find an event locally or we found an extremity with possibly a closer event we don't know about.
```
GET /_matrix/client/unstable/org.matrix.msc3030/rooms/<roomID>/timestamp_to_event?ts=<timestamp>&dir=<direction>
{
    "event_id": ...
    "origin_server_ts": ...
}
```

Federation API endpoint:
```
GET /_matrix/federation/unstable/org.matrix.msc3030/timestamp_to_event/<roomID>?ts=<timestamp>&dir=<direction>
{
    "event_id": ...
    "origin_server_ts": ...
}
```

Co-authored-by: Erik Johnston <erik@matrix.org>
2021-12-02 01:02:20 -06:00
..
__init__.py
_base.py
account.py
account_data.py
account_validity.py
auth.py
capabilities.py
devices.py
directory.py
events.py
filter.py
groups.py
initial_sync.py
keys.py
knock.py
login.py
logout.py
notifications.py
openid.py
password_policy.py
presence.py
profile.py
push_rule.py
pusher.py
read_marker.py
receipts.py
register.py
relations.py
report_event.py
room.py Add MSC3030 experimental client and federation API endpoints to get the closest event to a given timestamp (#9445) 2021-12-02 01:02:20 -06:00
room_batch.py
room_keys.py
room_upgrade_rest_servlet.py
sendtodevice.py
shared_rooms.py
sync.py
tags.py
thirdparty.py
tokenrefresh.py
transactions.py
user_directory.py
versions.py
voip.py