mirror of
https://github.com/cisagov/manage.get.gov.git
synced 2025-07-25 20:18:38 +02:00
Add perms checks
This commit is contained in:
parent
2f36033eb2
commit
84408fce48
5 changed files with 34 additions and 5 deletions
|
@ -100,6 +100,13 @@ urlpatterns = [
|
|||
name="analytics",
|
||||
),
|
||||
path("admin/", admin.site.urls),
|
||||
path(
|
||||
# We embed the current user ID here, but we have a permission check
|
||||
# that ensures the user is who they say they are.
|
||||
"finish-user-setup/<int:pk>",
|
||||
views.FinishContactProfileSetupView.as_view(),
|
||||
name="finish-contact-profile-setup",
|
||||
),
|
||||
path(
|
||||
"domain-request/<id>/edit/",
|
||||
views.DomainRequestWizard.as_view(),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue