Skip to content

Commit

Permalink
Added routes for deleting invites
Browse files Browse the repository at this point in the history
  • Loading branch information
chrismaddalena committed Jan 17, 2025
1 parent 78b4d51 commit 65c0556
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions ghostwriter/rolodex/urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,16 @@
views.ClientContactDelete.as_view(),
name="ajax_delete_client_poc",
),
path(
"ajax/client/invite/delete/<int:pk>",
views.ClientInviteDelete.as_view(),
name="ajax_delete_client_invite",
),
path(
"ajax/project/invite/delete/<int:pk>",
views.ProjectInviteDelete.as_view(),
name="ajax_delete_project_invite",
),
path(
"ajax/client/note/delete/<int:pk>",
views.ClientNoteDelete.as_view(),
Expand Down

0 comments on commit 65c0556

Please sign in to comment.