Merge branch 'master' into bug/3414-validate-params-reworked

This commit is contained in:
Owen Conti
2017-07-20 21:40:43 -06:00
committed by GitHub
2 changed files with 2 additions and 1 deletions

View File

@@ -73,7 +73,7 @@ export const authorizePassword = ( auth ) => ( { authActions } ) => {
let { schema, name, username, password, passwordType, clientId, clientSecret } = auth
let form = {
grant_type: "password",
scopes: encodeURIComponent(auth.scopes.join(scopeSeparator))
scope: encodeURIComponent(auth.scopes.join(scopeSeparator))
}
let query = {}
let headers = {}