mirror of
https://github.com/cisagov/manage.get.gov.git
synced 2025-08-01 23:42:17 +02:00
Review feedback: unit tests, accessibility, etc.
This commit is contained in:
parent
921790072d
commit
2f463b810b
9 changed files with 185 additions and 84 deletions
|
@ -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:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue