This repository has been archived by the owner on Apr 26, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix "add user" admin api error when request contains a "msisdn" three…
…pid (#13263) Co-authored-by: Thomas Weston <[email protected]> Co-authored-by: David Robertson <[email protected]>
- Loading branch information
1 parent
1381563
commit 0312ff4
Showing
3 changed files
with
37 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Fix a bug introduced in Synapse 1.15.0 where adding a user through the Synapse Admin API with a phone number would fail if the "enable_email_notifs" and "email_notifs_for_new_users" options were enabled. Contributed by @thomasweston12. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -1636,6 +1636,41 @@ def test_create_user_email_no_notif_for_new_users(self) -> None: | |
) | ||
self.assertEqual(len(pushers), 0) | ||
|
||
@override_config( | ||
{ | ||
"email": { | ||
"enable_notifs": True, | ||
"notif_for_new_users": True, | ||
"notif_from": "[email protected]", | ||
}, | ||
"public_baseurl": "https://example.com", | ||
} | ||
) | ||
def test_create_user_email_notif_for_new_users_with_msisdn_threepid(self) -> None: | ||
""" | ||
Check that a new regular user is created successfully when they have a msisdn | ||
threepid and email notif_for_new_users is set to True. | ||
""" | ||
url = self.url_prefix % "@bob:test" | ||
|
||
# Create user | ||
body = { | ||
"password": "abc123", | ||
"threepids": [{"medium": "msisdn", "address": "1234567890"}], | ||
} | ||
|
||
channel = self.make_request( | ||
"PUT", | ||
url, | ||
access_token=self.admin_user_tok, | ||
content=body, | ||
) | ||
|
||
self.assertEqual(201, channel.code, msg=channel.json_body) | ||
self.assertEqual("@bob:test", channel.json_body["name"]) | ||
self.assertEqual("msisdn", channel.json_body["threepids"][0]["medium"]) | ||
self.assertEqual("1234567890", channel.json_body["threepids"][0]["address"]) | ||
|
||
def test_set_password(self) -> None: | ||
""" | ||
Test setting a new password for another user. | ||
|