Skip to content

Commit

Permalink
Update finance URLs to put dashboard at index route
Browse files Browse the repository at this point in the history
  • Loading branch information
jb3 committed Oct 19, 2024
1 parent c0e51b7 commit 2aefc01
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion RIGS/urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,8 @@
path('event/webhook/', views.RecieveForumWebhook.as_view(), name='webhook_recieve'),

# Finance
path('invoice/', permission_required_with_403('RIGS.view_invoice')(views.InvoiceIndex.as_view()),
path('invoice/', permission_required_with_403('RIGS.view_invoice')(views.InvoiceDashboard.as_view()), name='invoice_dashboard'),
path('invoice/outstanding', permission_required_with_403('RIGS.view_invoice')(views.InvoiceOutstanding.as_view()),
name='invoice_list'),
path('invoice/archive/', permission_required_with_403('RIGS.view_invoice')(views.InvoiceArchive.as_view()),
name='invoice_archive'),
Expand Down

0 comments on commit 2aefc01

Please sign in to comment.