Skip to content

Commit

Permalink
return keys directly instead of keys object
Browse files Browse the repository at this point in the history
  • Loading branch information
mschwaig committed Feb 23, 2022
1 parent e8990a5 commit 5b3fa07
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion game/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ def launch():
@app.route('/jwks/', methods=['GET'])
def get_jwks():
tool_conf = ToolConfJsonFile(get_lti_config_path())
return jsonify({'keys': tool_conf.get_jwks()})
return jsonify(tool_conf.get_jwks())


@app.route('/configure/<launch_id>/<difficulty>/', methods=['GET', 'POST'])
Expand Down

0 comments on commit 5b3fa07

Please sign in to comment.