This commit is contained in:
David Kennedy 2024-05-09 11:14:49 -04:00
parent 1b6e6debf6
commit 948afab166
No known key found for this signature in database
GPG key ID: 6528A5386E66B96B
7 changed files with 109 additions and 17 deletions

View file

@ -178,6 +178,11 @@ urlpatterns = [
views.DomainAddUserView.as_view(),
name="domain-users-add",
),
path(
"user-profile",
views.UserProfileView.as_view(),
name="user-profile",
),
path(
"invitation/<int:pk>/delete",
views.DomainInvitationDeleteView.as_view(http_method_names=["post"]),