diff options
author | Patrick Cloke <clokep@users.noreply.github.com> | 2020-10-01 13:38:20 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-01 13:38:20 -0400 |
commit | 61aaf36a1cdaa0057d0f4d8784a8e126d5f3988a (patch) | |
tree | 21da103fff0bd19b760260e693c498776f4178d7 /synapse/rest/client | |
parent | update changelog (diff) | |
download | synapse-61aaf36a1cdaa0057d0f4d8784a8e126d5f3988a.tar.xz |
Do not expose the experimental appservice login flow to clients. (#8440)
Diffstat (limited to 'synapse/rest/client')
-rw-r--r-- | synapse/rest/client/v1/login.py | 2 |
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): |