fix: clarify that 3pids are currently unsupported

This commit is contained in:
Matthias Ahouansou 2024-05-29 09:36:35 +01:00
parent 817f382c5f
commit 59d7674b2a
No known key found for this signature in database

View file

@ -475,7 +475,7 @@ pub async fn request_3pid_management_token_via_email_route(
) -> Result<request_3pid_management_token_via_email::v3::Response> { ) -> Result<request_3pid_management_token_via_email::v3::Response> {
Err(Error::BadRequest( Err(Error::BadRequest(
ErrorKind::ThreepidDenied, ErrorKind::ThreepidDenied,
"Third party identifier is not allowed", "Third party identifiers are currently unsupported by this server implementation",
)) ))
} }
@ -489,6 +489,6 @@ pub async fn request_3pid_management_token_via_msisdn_route(
) -> Result<request_3pid_management_token_via_msisdn::v3::Response> { ) -> Result<request_3pid_management_token_via_msisdn::v3::Response> {
Err(Error::BadRequest( Err(Error::BadRequest(
ErrorKind::ThreepidDenied, ErrorKind::ThreepidDenied,
"Third party identifier is not allowed", "Third party identifiers are currently unsupported by this server implementation",
)) ))
} }