From 62273d5438ce8b8a7b1810b170b01f1db3c78515 Mon Sep 17 00:00:00 2001 From: Frederick Muriuki Muriithi Date: Thu, 8 Aug 2024 09:52:55 -0500 Subject: Forward email to email verification page. --- gn_auth/auth/authentication/oauth2/views.py | 3 ++- gn_auth/auth/authorisation/users/views.py | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/gn_auth/auth/authentication/oauth2/views.py b/gn_auth/auth/authentication/oauth2/views.py index efaae56..ca1cf5a 100644 --- a/gn_auth/auth/authentication/oauth2/views.py +++ b/gn_auth/auth/authentication/oauth2/views.py @@ -74,7 +74,8 @@ def authorise(): url_for("oauth2.users.handle_unverified", response_type=form["response_type"], client_id=client_id, - redirect_uri=form["redirect_uri"]), + redirect_uri=form["redirect_uri"], + email=email["email"]), code=307) return server.create_authorization_response(request=request, grant_user=user) flash(email_passwd_msg, "alert-danger") diff --git a/gn_auth/auth/authorisation/users/views.py b/gn_auth/auth/authorisation/users/views.py index 4530522..86db014 100644 --- a/gn_auth/auth/authorisation/users/views.py +++ b/gn_auth/auth/authorisation/users/views.py @@ -315,7 +315,7 @@ def handle_unverified(): # or pass the client_id here? return render_template( "users/unverified-user.html", - email=form.get("user:email"), + email=request.args["email"], response_type=request.args["response_type"], client_id=request.args["client_id"], redirect_uri=request.args["redirect_uri"]) -- cgit v1.2.3