0
0
Fork 1
mirror of https://mau.dev/maunium/synapse.git synced 2024-06-02 02:38:59 +02:00

Add set_user_admin function to the module API (#12341)

This commit is contained in:
Amanda Graven 2022-04-01 10:31:30 +02:00 committed by GitHub
parent bebf994ee8
commit 4e900ece42
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 26 additions and 0 deletions

View file

@ -0,0 +1 @@
Allow setting user admin status using the module API. Contributed by Famedly.

View file

@ -515,6 +515,17 @@ class ModuleApi:
"""
return await self._store.is_server_admin(UserID.from_string(user_id))
async def set_user_admin(self, user_id: str, admin: bool) -> None:
"""Sets if a user is a server admin.
Added in Synapse v1.56.0.
Args:
user_id: The Matrix ID of the user to set admin status for.
admin: True iff the user is to be a server admin, false otherwise.
"""
await self._store.set_server_admin(UserID.from_string(user_id), admin)
def get_qualified_user_id(self, username: str) -> str:
"""Qualify a user id, if necessary

View file

@ -96,6 +96,20 @@ class ModuleApiTestCase(HomeserverTestCase):
self.assertEqual(found_user.user_id.to_string(), user_id)
self.assertIdentical(found_user.is_admin, True)
def test_can_set_admin(self):
user_id = self.get_success(
self.register_user(
"alice_wants_admin",
"1234",
displayname="Alice Powerhungry",
admin=False,
)
)
self.get_success(self.module_api.set_user_admin(user_id, True))
found_user = self.get_success(self.module_api.get_userinfo_by_id(user_id))
self.assertEqual(found_user.user_id.to_string(), user_id)
self.assertIdentical(found_user.is_admin, True)
def test_get_userinfo_by_id(self):
user_id = self.register_user("alice", "1234")
found_user = self.get_success(self.module_api.get_userinfo_by_id(user_id))