summary refs log tree commit diff
path: root/synapse/appservice
diff options
context:
space:
mode:
authorPatrick Cloke <clokep@users.noreply.github.com>2022-06-01 09:41:25 -0400
committerGitHub <noreply@github.com>2022-06-01 09:41:25 -0400
commit7bc08f320147a1d80371eb13258328c88073fad0 (patch)
tree1f22e49297c6c5ff79d8845c6a81538e13e6b13b /synapse/appservice
parentRemove direct refeferences to PyNaCl (use signedjson instead). (#12902) (diff)
downloadsynapse-7bc08f320147a1d80371eb13258328c88073fad0.tar.xz
Remove remaining bits of groups code. (#12936)
* Update worker docs to remove group endpoints.
* Removes an unused parameter to `ApplicationService`.
* Break dependency between media repo and groups.
* Avoid copying `m.room.related_groups` state events during room upgrades.
Diffstat (limited to 'synapse/appservice')
-rw-r--r--synapse/appservice/__init__.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/synapse/appservice/__init__.py b/synapse/appservice/__init__.py
index ed92c2e910..0dfa00df44 100644
--- a/synapse/appservice/__init__.py
+++ b/synapse/appservice/__init__.py
@@ -70,7 +70,6 @@ class ApplicationService:
     def __init__(
         self,
         token: str,
-        hostname: str,
         id: str,
         sender: str,
         url: Optional[str] = None,
@@ -88,7 +87,6 @@ class ApplicationService:
         )  # url must not end with a slash
         self.hs_token = hs_token
         self.sender = sender
-        self.server_name = hostname
         self.namespaces = self._check_namespaces(namespaces)
         self.id = id
         self.ip_range_whitelist = ip_range_whitelist