Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix reverse match for "profile_add_email" not found #3289

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions apps/profiles/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -321,7 +321,7 @@
request, "Noe gikk galt. Vennligst ta kontakt med dotkom."
)

return redirect("profile_add_email")
return redirect("profiles")

Check warning on line 324 in apps/profiles/views.py

View check run for this annotation

Codecov / codecov/patch

apps/profiles/views.py#L324

Added line #L324 was not covered by tests


class GSuiteResetPassword(View):
Expand All @@ -335,7 +335,7 @@
except ValueError as err:
messages.error(request, err)

return redirect("profile_add_email")
return redirect("profiles")

Check warning on line 338 in apps/profiles/views.py

View check run for this annotation

Codecov / codecov/patch

apps/profiles/views.py#L338

Added line #L338 was not covered by tests


class PublicProfileSearchSet(
Expand Down