Skip to content

Commit

Permalink
add url endpoint for get_orgs_with_billing
Browse files Browse the repository at this point in the history
  • Loading branch information
aaronk committed Oct 3, 2024
1 parent eb566eb commit 071fc59
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions coldfront/plugins/ifx/urls.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
from django.urls import path, include
from rest_framework import routers
from ifxbilling.views import unauthorized as unauthorized_api
from ifxbilling.views import get_orgs_with_billing
from ifxuser.views import get_org_names
from coldfront.plugins.ifx.viewsets import ColdfrontBillingRecordViewSet, ColdfrontReportRunViewSet, ColdfrontProductUsageViewSet
from coldfront.plugins.ifx.views import update_user_accounts_view, get_billing_record_list, unauthorized, report_runs, run_report, calculate_billing_month, billing_month, get_product_usages, billing_records, send_billing_record_review_notification
Expand All @@ -13,6 +14,7 @@
urlpatterns = [
path('api/unauthorized/', unauthorized_api),
path('api/billing/get-billing-record-list/', get_billing_record_list),
path('api/billing/get-orgs-with-billing/<str:invoice_prefix>/<int:year>/<int:month>/', get_orgs_with_billing),
path('api/calculate-billing-month/<int:year>/<int:month>/', calculate_billing_month),
path('api/run-report/', run_report),
path('api/get-org-names/', get_org_names, name='get-org-names'),
Expand Down

0 comments on commit 071fc59

Please sign in to comment.