mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2025-05-08 06:55:03 -04:00
Remove unused room_alias
field from /createRoom
response (#15093)
* Change `create_room` return type * Don't return room alias from /createRoom * Update other callsites * Fix up mypy complaints It looks like new_room_user_id is None iff new_room_id is None. It's a shame we haven't expressed this in a way that mypy can understand. * Changelog
This commit is contained in:
parent
8219525b66
commit
647ff3ef65
10 changed files with 40 additions and 39 deletions
|
@ -33,8 +33,7 @@ class ExtremStatisticsTestCase(HomeserverTestCase):
|
|||
events = [(3, 2), (6, 2), (4, 6)]
|
||||
|
||||
for event_count, extrems in events:
|
||||
info, _ = self.get_success(room_creator.create_room(requester, {}))
|
||||
room_id = info["room_id"]
|
||||
room_id, _, _ = self.get_success(room_creator.create_room(requester, {}))
|
||||
|
||||
last_event = None
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue