diff options
author | David Baker <dave@matrix.org> | 2015-04-01 15:05:30 +0100 |
---|---|---|
committer | David Baker <dave@matrix.org> | 2015-04-01 15:05:30 +0100 |
commit | e9c908ebc09ccc050bd09692c5413124a8c3c06e (patch) | |
tree | 8e22da7bc4130e9fe54a5843e12a16b1b4327543 /synapse/rest/client/v2_alpha/register.py | |
parent | Make docs a bit more true (diff) | |
download | synapse-e9c908ebc09ccc050bd09692c5413124a8c3c06e.tar.xz |
Completely replace fallback auth for C/S V2:
* Now only the auth part goes to fallback, not the whole operation * Auth fallback is a normal API endpoint, not a static page * Params like the recaptcha pubkey can just live in the config Involves a little engineering on JsonResource so its servlets aren't always forced to return JSON. I should document this more, in fact I'll do that now.
Diffstat (limited to 'synapse/rest/client/v2_alpha/register.py')
-rw-r--r-- | synapse/rest/client/v2_alpha/register.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/rest/client/v2_alpha/register.py b/synapse/rest/client/v2_alpha/register.py index 4a53e03743..537918ea27 100644 --- a/synapse/rest/client/v2_alpha/register.py +++ b/synapse/rest/client/v2_alpha/register.py @@ -45,7 +45,7 @@ class RegisterRestServlet(RestServlet): [LoginType.RECAPTCHA], [LoginType.EMAIL_IDENTITY, LoginType.RECAPTCHA], [LoginType.APPLICATION_SERVICE] - ], body) + ], body, self.hs.get_ip_from_request(request)) if not authed: defer.returnValue((401, result)) |