diff --git a/synapse/module_api/__init__.py b/synapse/module_api/__init__.py
index 788b2e47d5..a91a7fa3ce 100644
--- a/synapse/module_api/__init__.py
+++ b/synapse/module_api/__init__.py
@@ -72,6 +72,7 @@ from synapse.handlers.auth import (
CHECK_3PID_AUTH_CALLBACK,
CHECK_AUTH_CALLBACK,
GET_USERNAME_FOR_REGISTRATION_CALLBACK,
+ IS_3PID_ALLOWED_CALLBACK,
ON_LOGGED_OUT_CALLBACK,
AuthHandler,
)
@@ -312,6 +313,7 @@ class ModuleApi:
auth_checkers: Optional[
Dict[Tuple[str, Tuple[str, ...]], CHECK_AUTH_CALLBACK]
] = None,
+ is_3pid_allowed: Optional[IS_3PID_ALLOWED_CALLBACK] = None,
get_username_for_registration: Optional[
GET_USERNAME_FOR_REGISTRATION_CALLBACK
] = None,
@@ -323,6 +325,7 @@ class ModuleApi:
return self._password_auth_provider.register_password_auth_provider_callbacks(
check_3pid_auth=check_3pid_auth,
on_logged_out=on_logged_out,
+ is_3pid_allowed=is_3pid_allowed,
auth_checkers=auth_checkers,
get_username_for_registration=get_username_for_registration,
)
@@ -401,6 +404,32 @@ class ModuleApi:
"""
return self._hs.config.email.email_app_name
+ @property
+ def server_name(self) -> str:
+ """The server name for the local homeserver.
+
+ Added in Synapse v1.53.0.
+ """
+ return self._server_name
+
+ @property
+ def worker_name(self) -> Optional[str]:
+ """The name of the worker this specific instance is running as per the
+ "worker_name" configuration setting, or None if it's the main process.
+
+ Added in Synapse v1.53.0.
+ """
+ return self._hs.config.worker.worker_name
+
+ @property
+ def worker_app(self) -> Optional[str]:
+ """The name of the worker app this specific instance is running as per the
+ "worker_app" configuration setting, or None if it's the main process.
+
+ Added in Synapse v1.53.0.
+ """
+ return self._hs.config.worker.worker_app
+
async def get_userinfo_by_id(self, user_id: str) -> Optional[UserInfo]:
"""Get user info by user_id
|