summary refs log tree commit diff
path: root/synapse/handlers/read_marker.py (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Add type hints to some handlers (#8505)Patrick Cloke2020-10-091-2/+8
|
* Simplify super() calls to Python 3 syntax. (#8344)Patrick Cloke2020-09-181-1/+1
| | | | | | | This converts calls like super(Foo, self) -> super(). Generated with: sed -i "" -Ee 's/super\([^\(]+\)/super()/g' **/*.py
* Port receipt and read markers to async/waitErik Johnston2019-10-291-8/+5
|
* Run Black. (#5482)Amber Brown2019-06-201-6/+3
|
* Rename async to async_helpers because `async` is a keyword on Python 3.7 (#3678)Amber Brown2018-08-101-1/+1
|
* run isortAmber Brown2018-07-091-2/+3
|
* Improve caching for read_marker APIErik Johnston2018-03-011-3/+3
| | | | | | We add a new storage function to get a paritcular type of room account data. This allows us to prefill the cache when updating that acount data.
* m.read_marker -> m.fully_read (#2128)Luke Barnard2017-04-181-4/+4
| | | | | | Also: - change the REST endpoint to have a "S" on the end (so it's now /read_markers) - change the content of the m.read_up_to event to have the key "event_id" instead of "marker".
* Simplify is_event_after logicLuke Barnard2017-04-121-2/+3
|
* Only notify user, not entire roomLuke Barnard2017-04-121-3/+1
|
* Remove comment, simplify null-guardLuke Barnard2017-04-121-4/+1
|
* Handle no previous RMLuke Barnard2017-04-121-1/+4
|
* flake8Luke Barnard2017-04-111-1/+0
|
* Refactor event ordering check to events storeLuke Barnard2017-04-111-28/+4
|
* CopyrightLuke Barnard2017-04-111-1/+1
|
* flake8Luke Barnard2017-04-111-2/+1
|
* Finish implementing RM endpointLuke Barnard2017-04-111-39/+48
| | | | | - This change causes a 405 to be sent if "m.read_marker" is set via /account_data - This also fixes-up the RM endpoint so that it actually Works.
* Initial commit of RM server-side impllukebarnard2017-04-111-0/+82
(See https://docs.google.com/document/d/1UWqdS-e1sdwkLDUY0wA4gZyIkRp-ekjsLZ8k6g_Zvso/edit#heading=h.lndohpg8at5u)