0
0
Fork 1
mirror of https://mau.dev/maunium/synapse.git synced 2024-06-21 20:18:20 +02:00

Minor spec tweaks.

This commit is contained in:
Kegan Dougal 2014-09-05 12:46:48 -07:00 committed by Emmanuel ROHEE
parent 24f0bb4af5
commit 7bff9b6269

View file

@ -755,15 +755,17 @@ There are several APIs provided to ``GET`` events for a room:
Description:
Get all ``m.room.member`` state events.
Response format:
``{ "start": "token", "end": "token", "chunk": [ { m.room.member event }, ... ] }``
``{ "start": "<token>", "end": "<token>", "chunk": [ { m.room.member event }, ... ] }``
Example:
TODO
|/rooms/<room_id>/messages|_
Description:
Get all ``m.room.message`` events.
Get all ``m.room.message`` and ``m.room.member`` events. This API supports pagination
using ``from`` and ``to`` query parameters, coupled with the ``start`` and ``end``
tokens from an |initialSync|_ API.
Response format:
``{ TODO }``
``{ "start": "<token>", "end": "<token>" }``
Example:
TODO