Skip to content

Commit

Permalink
fix: expose correct discovery metadata jwt introspection signing algs
Browse files Browse the repository at this point in the history
fixes #475
  • Loading branch information
panva committed May 29, 2019
1 parent 967c829 commit cf4e442
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/actions/discovery.js
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ module.exports = function discovery(ctx, next) {
}

if (config.features.jwtIntrospection.enabled) {
ctx.body.introspection_endpoint_signing_alg_values_supported = config.introspectionSigningAlgValues;
ctx.body.introspection_signing_alg_values_supported = config.introspectionSigningAlgValues;
}

if (config.features.revocation.enabled) {
Expand Down

0 comments on commit cf4e442

Please sign in to comment.