summary refs log tree commit diff
path: root/synapse/handlers/sync.py (follow)
Commit message (Expand)AuthorAgeFilesLines
* Add API for setting account_data globaly or on a per room basisMark Haines2015-12-011-15/+57
* s/private_user_data/account_data/Mark Haines2015-11-181-14/+14
* Fix a few race conditions in the state calculationRichard van der Hoff2015-11-131-60/+63
* Make handlers.sync return a state dictionary, instead of an event list.Richard van der Hoff2015-11-131-31/+39
* Update some commentsRichard van der Hoff2015-11-131-10/+24
* Don't fiddle with results returned by event sourcesRichard van der Hoff2015-11-091-4/+12
* SYN-513: Include updates for rooms that have had all their tags deletedMark Haines2015-11-091-1/+1
* Open up /events to anonymous users for room events onlyDaniel Wagner-Hall2015-11-051-3/+17
* Merge branch 'develop' into daniel/removesomeliesMark Haines2015-11-041-20/+82
|\
| * Merge branch 'develop' into markjh/v2_sync_receiptsMark Haines2015-11-031-10/+57
| |\
| | * Include room tags in v2 /syncMark Haines2015-11-021-11/+58
| * | Include read receipts in v2 syncMark Haines2015-11-021-15/+30
| |/
* | Remove more unused parametersDaniel Wagner-Hall2015-11-021-1/+0
* | Remove unused arguments and codeDaniel Wagner-Hall2015-11-021-14/+1
|/
* Update the other place check_joined_room is calledMark Haines2015-10-301-1/+1
* Don't mark newly joined room timelines as limited in an incremental syncMark Haines2015-10-291-3/+5
* Implement full_state incremental syncRichard van der Hoff2015-10-261-17/+34
* Merge branch 'develop' into markjh/v2_sync_typingMark Haines2015-10-211-3/+127
|\
| * Include banned rooms in the archived section of v2 syncMark Haines2015-10-211-6/+9
| * Fix pep8Mark Haines2015-10-191-1/+0
| * Add rooms that the user has left under archived in v2 sync.Mark Haines2015-10-191-3/+125
* | Doc string for the SyncHandler.typing_by_room methodMark Haines2015-10-211-0/+12
* | Include typing events in initial v2 syncMark Haines2015-10-201-14/+29
|/
* Amalgamate _filter_events_for_clientErik Johnston2015-10-161-47/+1
* Merge pull request #305 from matrix-org/markjh/v2_sync_apiMark Haines2015-10-141-92/+105
|\
| * Fix v2 sync pollingMark Haines2015-10-141-3/+3
| * Add a get_invites_for_user method to the storage to find out the rooms a user...Mark Haines2015-10-131-6/+2
| * Include invites in incremental syncMark Haines2015-10-131-6/+25
| * Include invited rooms in the initial syncMark Haines2015-10-131-10/+6
| * Start spliting out the rooms into joined and invited in v2 syncMark Haines2015-10-131-18/+40
| * Update the filters to match the latest spec.Mark Haines2015-10-121-3/+3
| * Update the v2 room sync format to match the current v2 specMark Haines2015-10-081-14/+11
| * Move the rooms out into a room_map mapping from room_id to room.Mark Haines2015-10-051-18/+9
| * Start updating the sync API to match the specificationMark Haines2015-10-011-36/+28
* | Remove unused room_id argErik Johnston2015-10-141-1/+1
|/
* Fix up one more referenceDaniel Wagner-Hall2015-08-251-1/+0
* Don't get apservice interested rooms in RoomHandler.get_joined_rooms_for_usersErik Johnston2015-08-191-3/+21
* Fix _filter_events_for_clientErik Johnston2015-08-121-3/+1
* Use list comprehension instead of filterErik Johnston2015-08-121-10/+3
* Remove debug loggersErik Johnston2015-08-111-3/+0
* Fix application of ACLsErik Johnston2015-08-111-4/+13
* Speed up event filtering (for ACL) logicErik Johnston2015-08-041-1/+5
* Rename key and values for m.room.history_visibility. Support 'invited' valueErik Johnston2015-07-061-5/+20
* Respect m.room.history_visibility in v2_alpha sync APIErik Johnston2015-07-031-0/+33
* Fix v2 sync, update the last_notified_ms only if there was an active listenerMark Haines2015-05-141-1/+1
* Change room handlers get_rooms_for_user to get_joined_rooms_for_user. This us...Erik Johnston2015-03-091-2/+4
* Fix code-styleMark Haines2015-02-101-1/+1
* During room intial sync, only calculate current state once.Erik Johnston2015-02-091-3/+6
* SYN-258: get_recent_events_for_room only accepts stream tokens, convert the t...Mark Haines2015-02-061-1/+3
* Return empty list rather than None when there are no emphemeral events for a ...Mark Haines2015-01-301-1/+1
* Add doc string for __nonzero__ overrides for sync results, raise not implemen...Mark Haines2015-01-301-1/+8
* Check if the user has joined the room between incremental syncsMark Haines2015-01-301-4/+27
* Pass client info to the sync_configMark Haines2015-01-301-2/+3
* Fix token formattingMark Haines2015-01-301-3/+3
* Filter the recent events before applying the limit when doing an initial syncMark Haines2015-01-301-11/+10
* Filter the recent events before applying the limit when doing an incremental ...Mark Haines2015-01-301-15/+38
* Update todo for the filtering on syncMark Haines2015-01-291-1/+2
* Fix indentMark Haines2015-01-291-1/+1
* Move typing notifs to an "emphermal" event list on the room objectMark Haines2015-01-291-5/+7
* Fix check for empty room updateMark Haines2015-01-291-1/+1
* Fix v2 initial syncMark Haines2015-01-291-1/+2
* Use get_room_events_stream to get changes to the rooms if the number of chang...Mark Haines2015-01-291-11/+45
* Remove typing TODOMark Haines2015-01-291-1/+0
* Add typing notifications to syncMark Haines2015-01-291-9/+21
* Fix FormattingMark Haines2015-01-271-8/+5
* Wait for events if the incremental sync is empty and a timeout is givenMark Haines2015-01-271-7/+12
* Start implementing incremental initial syncMark Haines2015-01-271-25/+208
* Start implementing the non-incremental sync portion of the v2 /sync APIMark Haines2015-01-261-25/+62
* Add handler for /sync APIMark Haines2015-01-261-0/+110