Add top-level account_data to /sync response
This commit is contained in:
parent
0474010d47
commit
7478e7f3cf
3 changed files with 19 additions and 1 deletions
|
@ -384,6 +384,15 @@ paths:
|
||||||
allOf:
|
allOf:
|
||||||
- "$ref": "definitions/event-schemas/schema/core-event-schema/event.yaml"
|
- "$ref": "definitions/event-schemas/schema/core-event-schema/event.yaml"
|
||||||
required: ["room_id", "membership"]
|
required: ["room_id", "membership"]
|
||||||
|
account_data:
|
||||||
|
type: array
|
||||||
|
description: |-
|
||||||
|
The global private data created by this user.
|
||||||
|
items:
|
||||||
|
title: Event
|
||||||
|
type: object
|
||||||
|
allOf:
|
||||||
|
- "$ref": "definitions/event-schemas/schema/core-event-schema/event.yaml"
|
||||||
required: ["end", "rooms", "presence"]
|
required: ["end", "rooms", "presence"]
|
||||||
404:
|
404:
|
||||||
description: There is no avatar URL for this user or this user does not exist.
|
description: There is no avatar URL for this user or this user does not exist.
|
||||||
|
|
|
@ -229,6 +229,13 @@ paths:
|
||||||
The updates to the presence status of other users.
|
The updates to the presence status of other users.
|
||||||
allOf:
|
allOf:
|
||||||
- $ref: "definitions/event_batch.yaml"
|
- $ref: "definitions/event_batch.yaml"
|
||||||
|
account_data:
|
||||||
|
title: Account Data
|
||||||
|
type: object
|
||||||
|
description: |-
|
||||||
|
The global private data created by this user.
|
||||||
|
allOf:
|
||||||
|
- $ref: "definitions/event_batch.yaml"
|
||||||
examples:
|
examples:
|
||||||
application/json: |-
|
application/json: |-
|
||||||
{
|
{
|
||||||
|
|
|
@ -30,7 +30,9 @@
|
||||||
``/login`` (`#367 <https://github.com/matrix-org/matrix-doc/pull/367>`_).
|
``/login`` (`#367 <https://github.com/matrix-org/matrix-doc/pull/367>`_).
|
||||||
- Make ``origin_server_ts`` a mandatory field of room events
|
- Make ``origin_server_ts`` a mandatory field of room events
|
||||||
(`#379 <https://github.com/matrix-org/matrix-doc/pull/370>`_).
|
(`#379 <https://github.com/matrix-org/matrix-doc/pull/370>`_).
|
||||||
|
- Add top-level ``account_data`` key to the responses to ``GET /sync`` and
|
||||||
|
``GET /initialSync``
|
||||||
|
(`#380 <https://github.com/matrix-org/matrix-doc/pull/380>`_).
|
||||||
|
|
||||||
r0.2.0
|
r0.2.0
|
||||||
======
|
======
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue