From 631254a1cd8535ff62661dc9efa6da2e83cbc457 Mon Sep 17 00:00:00 2001 From: Son Date: Mon, 23 May 2022 14:44:24 +0200 Subject: [PATCH] redirect user to dashboard instead of the account activation page for now --- app/auth/views/activate.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/app/auth/views/activate.py b/app/auth/views/activate.py index a237a328..debec916 100644 --- a/app/auth/views/activate.py +++ b/app/auth/views/activate.py @@ -64,4 +64,6 @@ def activate(): return redirect(next_url) else: LOG.d("redirect user to dashboard") - return redirect(url_for("onboarding.account_activated")) + return redirect(url_for("dashboard.index")) + # todo: redirect to account_activated page when more features are added into the browser extension + # return redirect(url_for("onboarding.account_activated"))