Merge pull request #259 from rschamp/bugfix/GH-238

Support redirect responses from API calls
This commit is contained in:
Ray Schamp 2015-12-11 09:41:57 -05:00
commit 458c112e6c

View file

@ -34,6 +34,9 @@ var Api = {
} }
xhr(opts, function (err, res, body) { xhr(opts, function (err, res, body) {
if (err) log.error(err); if (err) log.error(err);
// Legacy API responses come as lists, and indicate to redirect the client like
// [{success: true, redirect: "/location/to/redirect"}]
if (body && body[0] && 'redirect' in body[0]) window.location = body[0].redirect;
callback(err, body); callback(err, body);
}); });
}.bind(this); }.bind(this);