diff options
author | Frederick Muriuki Muriithi | 2024-05-02 05:39:30 +0300 |
---|---|---|
committer | Frederick Muriuki Muriithi | 2024-05-02 05:41:29 +0300 |
commit | 1f25d024040e17ad86472fb29f17753218b9c119 (patch) | |
tree | 59bc0c074065bdd1d7dccb5d6f71ae530658d4cb /gn_auth/auth | |
parent | b3244a70776b75d9f35a3d1ff6f01fd6244f4e36 (diff) | |
download | gn-auth-1f25d024040e17ad86472fb29f17753218b9c119.tar.gz |
Use same name as register-client form
Diffstat (limited to 'gn_auth/auth')
-rw-r--r-- | gn_auth/auth/authorisation/users/admin/views.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gn_auth/auth/authorisation/users/admin/views.py b/gn_auth/auth/authorisation/users/admin/views.py index e0ebdf3..3018a62 100644 --- a/gn_auth/auth/authorisation/users/admin/views.py +++ b/gn_auth/auth/authorisation/users/admin/views.py @@ -279,9 +279,9 @@ def edit_client(): the_client = the_client.value client_metadata = { **the_client.client_metadata, - "default_redirect_uri": form["default_redirect_uri"], + "default_redirect_uri": form["redirect_uri"], "redirect_uris": list(set( - [form["default_redirect_uri"]] + + [form["redirect_uri"]] + form["other_redirect_uris"].split("\r\n"))), "grants": form.getlist("grants[]"), "scope": form.getlist("scope[]") |