mirror of
https://github.com/matrix-org/matrix-spec
synced 2026-03-23 19:44:09 +01:00
Add missing 403 responses on profile endpoints
Signed-off-by: Johannes Marbach <n0-0ne+github@mailbox.org>
This commit is contained in:
parent
08bc8e8a1f
commit
140fbc8e08
|
|
@ -98,6 +98,20 @@ paths:
|
||||||
value: {
|
value: {
|
||||||
"displayname": "Alice Margatroid"
|
"displayname": "Alice Margatroid"
|
||||||
}
|
}
|
||||||
|
"403":
|
||||||
|
x-addedInMatrixVersion: "1.2"
|
||||||
|
description: The server is unwilling to disclose whether the user exists and/or
|
||||||
|
has a display name.
|
||||||
|
content:
|
||||||
|
application/json:
|
||||||
|
schema:
|
||||||
|
$ref: definitions/errors/error.yaml
|
||||||
|
examples:
|
||||||
|
response:
|
||||||
|
value: {
|
||||||
|
"errcode": "M_FORBIDDEN",
|
||||||
|
"error": "Profile lookup over federation is disabled on this homeserver"
|
||||||
|
}
|
||||||
"404":
|
"404":
|
||||||
description: There is no display name for this user or this user does not exist.
|
description: There is no display name for this user or this user does not exist.
|
||||||
tags:
|
tags:
|
||||||
|
|
@ -185,6 +199,20 @@ paths:
|
||||||
value: {
|
value: {
|
||||||
"avatar_url": "mxc://matrix.org/SDGdghriugerRg"
|
"avatar_url": "mxc://matrix.org/SDGdghriugerRg"
|
||||||
}
|
}
|
||||||
|
"403":
|
||||||
|
x-addedInMatrixVersion: "1.2"
|
||||||
|
description: The server is unwilling to disclose whether the user exists and/or
|
||||||
|
has an avatar URL.
|
||||||
|
content:
|
||||||
|
application/json:
|
||||||
|
schema:
|
||||||
|
$ref: definitions/errors/error.yaml
|
||||||
|
examples:
|
||||||
|
response:
|
||||||
|
value: {
|
||||||
|
"errcode": "M_FORBIDDEN",
|
||||||
|
"error": "Profile lookup over federation is disabled on this homeserver"
|
||||||
|
}
|
||||||
"404":
|
"404":
|
||||||
description: There is no avatar URL for this user or this user does not exist.
|
description: There is no avatar URL for this user or this user does not exist.
|
||||||
tags:
|
tags:
|
||||||
|
|
|
||||||
|
|
@ -170,6 +170,20 @@ paths:
|
||||||
"displayname": "John Doe",
|
"displayname": "John Doe",
|
||||||
"avatar_url": "mxc://matrix.org/MyC00lAvatar"
|
"avatar_url": "mxc://matrix.org/MyC00lAvatar"
|
||||||
}
|
}
|
||||||
|
"403":
|
||||||
|
x-addedInMatrixVersion: "1.2"
|
||||||
|
description: The server is unwilling to disclose whether the user exists and/or
|
||||||
|
has a display name.
|
||||||
|
content:
|
||||||
|
application/json:
|
||||||
|
schema:
|
||||||
|
$ref: ../client-server/definitions/errors/error.yaml
|
||||||
|
examples:
|
||||||
|
response:
|
||||||
|
value: {
|
||||||
|
"errcode": "M_FORBIDDEN",
|
||||||
|
"error": "Profile lookup over federation is disabled on this homeserver"
|
||||||
|
}
|
||||||
"404":
|
"404":
|
||||||
description: The user does not exist or does not have a profile.
|
description: The user does not exist or does not have a profile.
|
||||||
content:
|
content:
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue