From b3244a70776b75d9f35a3d1ff6f01fd6244f4e36 Mon Sep 17 00:00:00 2001 From: Frederick Muriuki Muriithi Date: Thu, 2 May 2024 05:12:43 +0300 Subject: Make registration of grant-types more flexible. --- gn_auth/auth/authorisation/users/admin/views.py | 12 ++++++++++++ gn_auth/templates/admin/register-client.html | 16 +++++++--------- 2 files changed, 19 insertions(+), 9 deletions(-) (limited to 'gn_auth') diff --git a/gn_auth/auth/authorisation/users/admin/views.py b/gn_auth/auth/authorisation/users/admin/views.py index a4c4033..e0ebdf3 100644 --- a/gn_auth/auth/authorisation/users/admin/views.py +++ b/gn_auth/auth/authorisation/users/admin/views.py @@ -46,6 +46,17 @@ admin = Blueprint("admin", __name__) class RegisterClientError(Exception): """Error to raise in case of client registration issues""" +_FORM_GRANT_TYPES_ = ({ + "name": "Authorization Code", + "value": "authorization_code" +}, { + "name": "Refresh Token", + "value": "refresh_token" +}, { + "name": "JWT Bearer Token", + "value": "urn:ietf:params:oauth:grant-type:jwt-bearer" +}) + @admin.before_request def update_expires(): """Update session expiration.""" @@ -183,6 +194,7 @@ def register_client(): "admin/register-client.html", scope=current_app.config["OAUTH2_SCOPE"], users=with_db_connection(__list_users__), + granttypes=_FORM_GRANT_TYPES_, current_user=session.session_user()) form = request.form diff --git a/gn_auth/templates/admin/register-client.html b/gn_auth/templates/admin/register-client.html index 5d525c5..20d7aa2 100644 --- a/gn_auth/templates/admin/register-client.html +++ b/gn_auth/templates/admin/register-client.html @@ -43,19 +43,17 @@

Supported grant types + {%for granttype in granttypes%} - +

- - - + {%endfor%}
-- cgit v1.2.3