Review feedback: unit tests, accessibility, etc.

This commit is contained in:
Neil Martinsen-Burrell 2022-10-26 13:49:09 -05:00
parent 921790072d
commit 2f463b810b
No known key found for this signature in database
GPG key ID: 6A3C818CC10D0184
9 changed files with 185 additions and 84 deletions

View file

@ -6,7 +6,7 @@ For more information see:
from django.conf import settings
from django.contrib import admin
from django.urls import include, path, re_path
from django.urls import include, path
from django.views.generic import RedirectView
from registrar.views import health, index, profile, whoami
@ -25,7 +25,7 @@ urlpatterns = [
path("edit_profile/", profile.edit_profile, name="edit-profile"),
path("openid/", include("djangooidc.urls")),
path("register/", application_wizard, name="application"),
re_path(r"^register/(?P<step>.+)/$", application_wizard, name=APPLICATION_URL_NAME),
path("register/<step>/", application_wizard, name=APPLICATION_URL_NAME),
]
if not settings.DEBUG: