- Jul 10, 2012
-
-
Lloyd Hilaiel authored
-
- May 02, 2012
-
-
Shane Tomlinson authored
* Update the "stage_user" and "stage_email" to take a password where appropriate. * Remove pass from calls to "complete_user_creation" and "complete_email_addition" * Update database drivers to set the account password where appropriate. * Update unit tests.
-
- Apr 11, 2012
-
-
Ben Adida authored
fixed check for site parameter, it should be an origin not a domain, and fixed all tests accordingly. Was careful not to screw up the verifier tests that are testing for old parameters to the verifier.
-
- Feb 09, 2012
-
-
Lloyd Hilaiel authored
-
- Jan 10, 2012
-
-
Gervase Markham authored
-
Lloyd Hilaiel authored
update wsapi_client to return errors in the standard node convention. update all clients. fix several areas in loadgen where we were not properly handling errors. improve informational output of loadgen failures. closes #838 - helps with issue #784 - closes #785
-
- Nov 04, 2011
-
-
Lloyd Hilaiel authored
fix race condition between token request and waiting for token, was causing test hangs. closes #530
-
Lloyd Hilaiel authored
fix race condition between token request and waiting for token, was causing test hangs. closes #530
-
- Nov 01, 2011
-
-
Lloyd Hilaiel authored
-
- Oct 28, 2011
-
-
Lloyd Hilaiel authored
-
- Oct 11, 2011
-
-
Lloyd Hilaiel authored
WSAPI CHANGES: All server responses are now objects, makes some funky browsers happy and prevents certain attacks. closes #217 closes #325 * /wsapi/have_email now returns { email_known: <boolean> } * /wsapi/stage_user now returns { success: <boolean> } * /wsapi/user_creation_status now returns { status: <string> } * /wsapi/complete_user_creation now returns { status: <boolean> } * /wsapi/stage_email now returns { success: <boolean> } * /wsapi/email_addition_status now returns { success: <boolean> } * /wsapi/complete_email_addition now returns { success: <boolean> } * /wsapi/authenticate_user now returns { success: <boolean> } * /wsapi/remove_email now returns { success: <boolean> } * /wsapi/account_cancel now returns { success: <boolean> } * /wsapi/logout now returns { success: <boolean> } Finally, introduced middleware to ensure that resp.json() is not called with anything other than an object.
-
- Sep 26, 2011
-
-
Lloyd Hilaiel authored
WSAPI CHANGES in preparation for new UX flows, specifically where you provide a password AFTER verifying emails. * stage_user no longer takes a password * after calling stage_user, you can poll status with user_creation_status * instead of 'prove_email_ownership', you call 'complete_user_creation' and provide a password * add_email is now 'stage_email' * after calling stage_email, you can poll status with email_addition_status * instead of 'prove_email_ownership', you call 'complete_email_addition' and provide a password * stage_* and complete_* calls are POST * *_status calls succeed continuously (not only once)
-
- Sep 15, 2011
-
-
Lloyd Hilaiel authored
remove obsolete syncEmails functionality from persistence layer, tests, wsapi, and client libraries. with certs the logic is much simpler and more efficient
-
- Sep 08, 2011
-
-
Ben Adida authored
-
- Sep 07, 2011
-
-
Ben Adida authored
-
- Aug 22, 2011
-
-
Lloyd Hilaiel authored
-