Delete functionality

This commit is contained in:
zandercymatics 2024-01-04 14:34:08 -07:00
parent 5ebae382ed
commit 403bfb6433
No known key found for this signature in database
GPG key ID: FF4636ABEC9682B7
5 changed files with 51 additions and 27 deletions

View file

@ -138,6 +138,11 @@ urlpatterns = [
views.DomainInvitationDeleteView.as_view(http_method_names=["post"]),
name="invitation-delete",
),
path(
"application/<int:pk>/delete",
views.DomainApplicationDeleteView.as_view(http_method_names=["post"]),
name="application-delete",
),
]
# we normally would guard these with `if settings.DEBUG` but tests run with