Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

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

Open
wants to merge 5 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions changelogs/server_server/newsfragments/1926.new
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
RESPONSE/server-server/edu.yaml

Fixes issue #1912 by adding error response to /_matrix/federation/v1/state_ids/{roomId}

CONTENT :
"403":
description: |-
The host is not in the room or the host is banned from the room via its 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 or you have been banned."
}
13 changes: 13 additions & 0 deletions data/api/server-server/events.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -140,6 +140,19 @@ paths:
required:
- auth_chain_ids
- pdu_ids
"403":
description: |-
The host is not in the room or the host is banned from the room via its 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
Expand Down