mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
Merge pull request #11280 from meteor/meteor-developer-oauth-details
This commit is contained in:
@@ -27,7 +27,7 @@ const requestCredential = (options, credentialRequestCompleteCallback) => {
|
||||
"/oauth2/authorize?" +
|
||||
`state=${OAuth._stateParam(loginStyle, credentialToken, options && options.redirectUrl)}` +
|
||||
"&response_type=code&" +
|
||||
`client_id=${config.clientId}`;
|
||||
`client_id=${config.clientId}${options && options.details ? `&details=${options && options.details}` : ''}`;
|
||||
|
||||
/**
|
||||
* @deprecated in 1.3.0
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
Package.describe({
|
||||
summary: 'Meteor developer accounts OAuth flow',
|
||||
version: '1.2.1'
|
||||
version: '1.2.2'
|
||||
});
|
||||
|
||||
Package.onUse(api => {
|
||||
|
||||
Reference in New Issue
Block a user