Skip to content

Commit

Permalink
Update kick/ban/unban with basic case
Browse files Browse the repository at this point in the history
  • Loading branch information
devonh committed Nov 21, 2023
1 parent a9fd6fd commit 7781640
Showing 1 changed file with 28 additions and 3 deletions.
31 changes: 28 additions & 3 deletions proposals/4080-cryptographic-identities.md
Original file line number Diff line number Diff line change
Expand Up @@ -251,15 +251,40 @@ internally in order to correctly sign future events sent to the room.

##### POST /_matrix/client/v4/rooms/{roomId}/kick

**TODO**
The kick endpoint is extended to return a `pdu` for the client to sign.

200 OK Response:
```
{
pdu: PDU
}
```

**TODO: How to handle external users**

##### POST /_matrix/client/v4/rooms/{roomId}/ban

**TODO**
The ban endpoint is extended to return a `pdu` for the client to sign.

200 OK Response:
```
{
pdu: PDU
}
```

**TODO: How to handle external users**

##### POST /_matrix/client/v4/rooms/{roomId}/unban

**TODO**
The unban endpoint is extended to return a `pdu` for the client to sign.

200 OK Response:
```
{
pdu: PDU
}
```

##### PUT /_matrix/client/v4/rooms/{roomId}/redact/{eventId}/{txnId}

Expand Down

0 comments on commit 7781640

Please sign in to comment.