1
0

Add unstable_features key

This commit is contained in:
Will Hunt
2020-07-05 14:06:32 +01:00
parent 9c1e934d94
commit 208d3cfa8a
2 changed files with 3 additions and 1 deletions

View File

@@ -44,7 +44,7 @@ class UserSharedRoomsServlet(RestServlet):
rooms = await self.store.get_rooms_in_common_for_users(user_id, other_user_id)
return 200, {"rooms": rooms,}
return 200, {"rooms": rooms}
def register_servlets(hs, http_server):

View File

@@ -60,6 +60,8 @@ class VersionsRestServlet(RestServlet):
"org.matrix.e2e_cross_signing": True,
# Implements additional endpoints as described in MSC2432
"org.matrix.msc2432": True,
# Implements additional endpoints as described in MSC2666
"uk.half-shot.msc2666": True,
},
},
)