Skip to content
This repository was archived by the owner on Apr 26, 2024. It is now read-only.

Commit 208d3cf

Browse files
committed
Add unstable_features key
1 parent 9c1e934 commit 208d3cf

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

synapse/rest/client/v2_alpha/shared_rooms.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ async def on_GET(self, request, user_id, other_user_id):
4444

4545
rooms = await self.store.get_rooms_in_common_for_users(user_id, other_user_id)
4646

47-
return 200, {"rooms": rooms,}
47+
return 200, {"rooms": rooms}
4848

4949

5050
def register_servlets(hs, http_server):

synapse/rest/client/versions.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,8 @@ def on_GET(self, request):
6060
"org.matrix.e2e_cross_signing": True,
6161
# Implements additional endpoints as described in MSC2432
6262
"org.matrix.msc2432": True,
63+
# Implements additional endpoints as described in MSC2666
64+
"uk.half-shot.msc2666": True,
6365
},
6466
},
6567
)

0 commit comments

Comments
 (0)