Merge branch 'main' into nmb/user-models

This commit is contained in:
Neil Martinsen-Burrell 2022-09-27 13:33:14 -05:00
commit 14cecf46ba
No known key found for this signature in database
GPG key ID: 6A3C818CC10D0184
21 changed files with 1302 additions and 55 deletions

View file

@ -10,10 +10,11 @@ from django.urls import include, path
from registrar.views import health, index, profile
urlpatterns = [
path("", index.index, name="home"),
path("admin/", admin.site.urls),
path("", index.index),
path("health/", health.health),
path("edit_profile/", profile.edit_profile, name="edit-profile"),
path("openid/", include("djangooidc.urls")),
# these views respect the DEBUG setting
path("__debug__/", include("debug_toolbar.urls")),
]