send_join: clarify auth_chain description

The auth_chain field should contain all of the auth events required to auth the
state events, as well as those required to auth the join event itself.

(cf e148438/synapse/handlers/federation.py (L1076-L1077)).
This commit is contained in:
Richard van der Hoff 2017-12-18 17:58:35 +00:00
parent 6d0eb2e9d1
commit 1fb7647021

View file

@ -941,11 +941,11 @@ following keys:
============== ===== ============
Key Type Description
============== ===== ============
``auth_chain`` List A list of events giving the authorization chain for this
join event
``auth_chain`` List A list of events giving the all of the events in the auth
chains for the join event and the events in ``state``.
``state`` List A complete list of the prevailing state events at the
instant just before accepting the new ``m.room.member``
event
event.
============== ===== ============
.. TODO-spec