Skip to content

Commit

Permalink
fix: optional / for /person/merge/ URL (#7746)
Browse files Browse the repository at this point in the history
  • Loading branch information
jennifer-richards authored Jul 24, 2024
1 parent aa36f48 commit d5ceb7b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ietf/person/urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
from ietf.utils.urls import url

urlpatterns = [
url(r'^merge/$', views.merge),
url(r'^merge/?$', views.merge),
url(r'^search/(?P<model_name>(person|email))/$', views.ajax_select2_search),
url(r'^(?P<personid>[0-9]+)/email.json$', ajax.person_email_json),
url(r'^(?P<email_or_name>[^/]+)$', views.profile),
Expand Down

0 comments on commit d5ceb7b

Please sign in to comment.