diff options
Diffstat (limited to 'gn2/wqflask/oauth2')
-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") }) |