diff options
author | Daniel Wagner-Hall <daniel@matrix.org> | 2015-12-02 15:45:04 +0000 |
---|---|---|
committer | Daniel Wagner-Hall <daniel@matrix.org> | 2015-12-02 15:45:04 +0000 |
commit | 872c1348077c1ed0f4b8066dc15b600ca816b843 (patch) | |
tree | 231b89adea0acac292dfc31d157001d5fcbbf2e9 /synapse/rest/client/v1/login.py | |
parent | Merge pull request #412 from matrix-org/erikj/search (diff) | |
download | synapse-872c1348077c1ed0f4b8066dc15b600ca816b843.tar.xz |
Update endpoints to reflect current spec
Diffstat (limited to 'synapse/rest/client/v1/login.py')
-rw-r--r-- | synapse/rest/client/v1/login.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/rest/client/v1/login.py b/synapse/rest/client/v1/login.py index ad17900c0d..776e1667c1 100644 --- a/synapse/rest/client/v1/login.py +++ b/synapse/rest/client/v1/login.py @@ -35,7 +35,7 @@ logger = logging.getLogger(__name__) class LoginRestServlet(ClientV1RestServlet): - PATTERNS = client_path_patterns("/login$", releases=()) + PATTERNS = client_path_patterns("/login$", releases=(), include_in_unstable=False) PASS_TYPE = "m.login.password" SAML2_TYPE = "m.login.saml2" CAS_TYPE = "m.login.cas" |