fix lint errors
This commit is contained in:
@@ -60,11 +60,11 @@ export default function authorize ( { auth, authActions, errActions, configs, au
|
|||||||
|
|
||||||
for (let key in additionalQueryStringParams) {
|
for (let key in additionalQueryStringParams) {
|
||||||
if (typeof additionalQueryStringParams[key] !== "undefined") {
|
if (typeof additionalQueryStringParams[key] !== "undefined") {
|
||||||
query.push([key, additionalQueryStringParams[key]].map(encodeURIComponent).join('='))
|
query.push([key, additionalQueryStringParams[key]].map(encodeURIComponent).join("="))
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
let url = [schema.get("authorizationUrl"), query.join('&')].join('?')
|
let url = [schema.get("authorizationUrl"), query.join("&")].join("?")
|
||||||
|
|
||||||
// pass action authorizeOauth2 and authentication data through window
|
// pass action authorizeOauth2 and authentication data through window
|
||||||
// to authorize with oauth2
|
// to authorize with oauth2
|
||||||
|
|||||||
Reference in New Issue
Block a user