Revert "Don't automatically put ?close at the end of Meteor Developer Accounts URLs"

This reverts commit 05d2c5edd7.

We haven't worked out all the backwards-compatiblity issues of
non-?close and ?close OAuth servers and clients yet, so let's leave this
as is now, and ensure that all the services that the tool talks to
accept ?close URLs.
This commit is contained in:
Emily Stark
2014-10-11 00:17:22 -07:00
parent 99568e5d9b
commit 91c6d70454

View File

@@ -1109,7 +1109,7 @@ exports.loginWithTokenOrOAuth = function (conn, accountsConfiguration,
// Either we didn't have an existing token, or it didn't work. Do an
// OAuth flow to log in.
var redirectUri = url + '/_oauth/meteor-developer';
var redirectUri = url + '/_oauth/meteor-developer?close';
loginResult = oauthFlow(conn, {
clientId: clientId,
redirectUri: redirectUri,