fix regression - re-export querystringify

This commit is contained in:
AJ ONeal 2017-01-18 16:01:17 -05:00
parent 3195b52dce
commit 67d589f6cf
1 changed files with 6 additions and 1 deletions

View File

@ -139,7 +139,7 @@
return oauth3.discover(providerUri, opts).then(function (directive) {
var prequest = core.implicitGrant(
directive
// TODO OAuth3 provider should referer / origin as the appId?
// TODO OAuth3 provider should referrer / referer / origin as the appId?
, opts
);
@ -530,6 +530,11 @@
return promise || promise2;
};
oauth3.core = core;
oauth3.querystringify = core.querystringify;
oauth3.scopestringify = core.stringifyscope;
oauth3.stringifyscope = core.stringifyscope;
exports.OAUTH3 = oauth3.oauth3 = oauth3.OAUTH3 = oauth3;
exports.oauth3 = exports.OAUTH3;