Add 403 error response to federation/v1/state_ids (#1926)

fixes #1912 by adding a 403 error response to /_matrix/federation/v1/state_ids/{roomId}

Signed-off-by: Srinjoy Sen Chowdhury  <srinjoysen123@gmail.com>
pull/1977/head^2
Srinjoy Sen Chowdhury 3 weeks ago committed by GitHub
parent 611d6c3e7e
commit 0b4d1c0237
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -0,0 +1 @@
Add 403 error response to `/_matrix/federation/v1/state_ids/{roomId}`.

@ -140,6 +140,19 @@ paths:
required:
- auth_chain_ids
- pdu_ids
"403":
description: |-
The requesting host is not in the room, or is excluded from the room via `m.room.server_acl`.
content:
application/json:
schema:
$ref: ../client-server/definitions/errors/error.yaml
examples:
response:
value: {
"errcode": "M_FORBIDDEN",
"error": "You do not have permission to access the state at the requested event."
}
"404":
description: |-
The given `event_id` was not found or the server doesn't know about the state at

Loading…
Cancel
Save