Renamed authorizeAccessCodeWithQueryParams->authorizeAccessCodeWithFormParams

since that is technically correct
This commit is contained in:
Eric Turcotte
2017-07-13 10:53:36 -05:00
parent b06971bf81
commit badfea61c3
2 changed files with 2 additions and 2 deletions

View File

@@ -111,7 +111,7 @@ export const authorizeApplication = ( auth ) => ( { authActions } ) => {
return authActions.authorizeRequest({body: buildFormData(form), name, url: schema.get("tokenUrl"), auth, headers })
}
export const authorizeAccessCodeWithQueryParams = ( { auth, redirectUrl } ) => ( { authActions } ) => {
export const authorizeAccessCodeWithFormParams = ( { auth, redirectUrl } ) => ( { authActions } ) => {
let { schema, name, clientId, clientSecret } = auth
let form = {
grant_type: "authorization_code",