Skip to content
This repository has been archived by the owner on Apr 3, 2019. It is now read-only.

Commit

Permalink
fix(2fa): Allow an explicit null value for acr_values param.
Browse files Browse the repository at this point in the history
  • Loading branch information
rfk committed Oct 23, 2018
1 parent 786e3c5 commit 47f4c61
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/routes/authorization.js
Expand Up @@ -192,7 +192,7 @@ module.exports = {
then: Joi.optional(),
otherwise: Joi.forbidden()
}),
acr_values: Joi.string().max(256).optional()
acr_values: Joi.string().max(256).optional().allow(null)
}
},
response: {
Expand Down

0 comments on commit 47f4c61

Please sign in to comment.