summary refs log tree commit diff
diff options
context:
space:
mode:
authorRichard van der Hoff <richard@matrix.org>2016-01-02 17:24:28 +0000
committerRichard van der Hoff <richard@matrix.org>2016-01-02 17:24:28 +0000
commit32d9fd0b266d8c419ce36a50cba4eb97c1fa2f82 (patch)
treee99b49f9b57f3423442216ffaa901d1f37457604
parentBump version and update changelog for v0.12.0-rc3 (diff)
downloadsynapse-32d9fd0b266d8c419ce36a50cba4eb97c1fa2f82.tar.xz
Expose /login under r0
The spec says /login should be available at r0 and 'unstable', so make it so.
-rw-r--r--synapse/rest/client/v1/login.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/rest/client/v1/login.py b/synapse/rest/client/v1/login.py
index 776e1667c1..e8c35508cd 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=(), include_in_unstable=False)
+    PATTERNS = client_path_patterns("/login$")
     PASS_TYPE = "m.login.password"
     SAML2_TYPE = "m.login.saml2"
     CAS_TYPE = "m.login.cas"