diff options
author | Frederick Muriuki Muriithi | 2024-08-05 17:21:20 -0500 |
---|---|---|
committer | Frederick Muriuki Muriithi | 2024-08-05 17:23:42 -0500 |
commit | 2ef80c22b43c41763fd96a28db5b942efe0d34ce (patch) | |
tree | 611dd1f43e94949beb4d964441bcd492e91edfa5 /gn2/wqflask | |
parent | 33a1274ddeee3ca27448d512c34ac0c5f66e7414 (diff) | |
download | genenetwork2-2ef80c22b43c41763fd96a28db5b942efe0d34ce.tar.gz |
Update JWKs endpoint documentation.
Diffstat (limited to 'gn2/wqflask')
-rw-r--r-- | gn2/wqflask/oauth2/toplevel.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gn2/wqflask/oauth2/toplevel.py b/gn2/wqflask/oauth2/toplevel.py index bc40a924..c6b789aa 100644 --- a/gn2/wqflask/oauth2/toplevel.py +++ b/gn2/wqflask/oauth2/toplevel.py @@ -94,7 +94,7 @@ def authorisation_code(): def public_jwks(): """Provide endpoint that returns the public keys.""" return jsonify({ - "documentation": "Returns a static key for the time being. This will change.", + "documentation": "The keys are listed in order of creation.", "jwks": KeySet(jwks.list_jwks( jwks.jwks_directory(app, "GN2_SECRETS"))).as_dict().get("keys") }) |