Merge pull request #380 from matrix-org/rav/doc_accountdata_key
Add top-level account_data to /sync response
This commit is contained in:
commit
69b1827b10
3 changed files with 19 additions and 1 deletions
|
@ -384,6 +384,15 @@ paths:
|
|||
allOf:
|
||||
- "$ref": "definitions/event-schemas/schema/core-event-schema/event.yaml"
|
||||
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"]
|
||||
404:
|
||||
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.
|
||||
allOf:
|
||||
- $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:
|
||||
application/json: |-
|
||||
{
|
||||
|
|
|
@ -30,7 +30,9 @@
|
|||
``/login`` (`#367 <https://github.com/matrix-org/matrix-doc/pull/367>`_).
|
||||
- Make ``origin_server_ts`` a mandatory field of room events
|
||||
(`#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
|
||||
======
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue