From 071fc59e300800e294bb81f1272314f50b773b9e Mon Sep 17 00:00:00 2001 From: Aaron Kitzmiller Date: Thu, 3 Oct 2024 14:49:15 -0400 Subject: [PATCH] add url endpoint for get_orgs_with_billing --- coldfront/plugins/ifx/urls.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/coldfront/plugins/ifx/urls.py b/coldfront/plugins/ifx/urls.py index 82e2300cf..3cb87121f 100644 --- a/coldfront/plugins/ifx/urls.py +++ b/coldfront/plugins/ifx/urls.py @@ -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 @@ -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////', get_orgs_with_billing), path('api/calculate-billing-month///', calculate_billing_month), path('api/run-report/', run_report), path('api/get-org-names/', get_org_names, name='get-org-names'),