summaryrefslogtreecommitdiff
path: root/src/jqueryRest.js
diff options
context:
space:
mode:
authorkaeff <hi@kaeff.net>2015-09-09 01:13:34 +0200
committerkaeff <hi@kaeff.net>2015-09-17 16:01:04 +0200
commit2d24b1fe1918ad96df4469f8902c3ddcb9bda5f9 (patch)
tree12c065893ae4e3cd31b980088aafc41d48a54532 /src/jqueryRest.js
parent8f33d32d40b1e21ae7fb9a92c78a275422af4217 (diff)
Allow extra signup params from account
For the feature/invite-codes in leap_web, we need to be able to pass an extra parameter (the invite code) from the signup form to the server. This approach allows the consumer of SRP to specify a custom implementation of Account that returns arbitrary `loginParams`, and Session will pass them on so that they become part of the XHR. - Split session.signup into signup and update to restrict extra params to signup only
Diffstat (limited to 'src/jqueryRest.js')
-rw-r--r--src/jqueryRest.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/jqueryRest.js b/src/jqueryRest.js
index 103f700..0c58eb2 100644
--- a/src/jqueryRest.js
+++ b/src/jqueryRest.js
@@ -11,7 +11,7 @@ srp.remote = (function(){
url: "/1/users/" + session.id() + ".json",
type: 'PUT',
headers: { Authorization: 'Token token="' + token + '"' },
- data: {user: session.signup() }
+ data: {user: session.update() }
});
}