Move the Redactions section to the client section.

This commit is contained in:
Patrick Cloke 2023-08-08 15:50:57 -04:00
parent 9af28538e5
commit f686f877dd

View file

@ -9,7 +9,8 @@ rules.
## Client considerations
Clients should no longer depend on the `creator` property of `m.room.create` events.
Clients should no longer depend on the `creator` property in the `content` of
`m.room.create` events.
Clients should note that the format of `m.room.redaction` events has been modified
and look for the `redacts` key under `content` instead of a top-level event property.
@ -17,8 +18,9 @@ and look for the `redacts` key under `content` instead of a top-level event prop
Clients should note that the `third_party_invite` key of `m.room.member` events
is no longer redacted, *but* will only contain the `signed` key after redaction.
Clients which implement the redaction algorithm locally should refer to the
[redactions](#redactions) section below for a full overview.
### Redactions
{{% rver-fragment name="v11-redactions" withVersioning="true" %}}
## Server implementation components
@ -241,7 +243,7 @@ Some consequences of these rules:
### Redactions
{{% rver-fragment name="v11-redactions" withVersioning="true" %}}
[See above](#redactions).
## Unchanged from v10