summary refs log tree commit diff
path: root/synapse/rest
diff options
context:
space:
mode:
authorPatrick Cloke <clokep@users.noreply.github.com>2020-10-01 13:38:20 -0400
committerGitHub <noreply@github.com>2020-10-01 13:38:20 -0400
commit61aaf36a1cdaa0057d0f4d8784a8e126d5f3988a (patch)
tree21da103fff0bd19b760260e693c498776f4178d7 /synapse/rest
parentupdate changelog (diff)
downloadsynapse-61aaf36a1cdaa0057d0f4d8784a8e126d5f3988a.tar.xz
Do not expose the experimental appservice login flow to clients. (#8440)
Diffstat (limited to 'synapse/rest')
-rw-r--r--synapse/rest/client/v1/login.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/synapse/rest/client/v1/login.py b/synapse/rest/client/v1/login.py
index b9347b87c7..3d1693d7ac 100644
--- a/synapse/rest/client/v1/login.py
+++ b/synapse/rest/client/v1/login.py
@@ -111,8 +111,6 @@ class LoginRestServlet(RestServlet):
             ({"type": t} for t in self.auth_handler.get_supported_login_types())
         )
 
-        flows.append({"type": LoginRestServlet.APPSERVICE_TYPE})
-
         return 200, {"flows": flows}
 
     def on_OPTIONS(self, request: SynapseRequest):