Rename to performance-dashboard

This commit is contained in:
Rebecca Law
2021-03-10 11:01:15 +00:00
committed by Chris Hill-Scott
parent 042527e74c
commit 3ca2840652
5 changed files with 24 additions and 28 deletions

View File

@@ -0,0 +1,10 @@
from app.notify_client import NotifyAdminAPIClient
class PerformanceDashboardAPIClient(NotifyAdminAPIClient):
def get_performance_dashboard_stats(self, params_dict=None):
return self.get("/performance-dashboard", params=params_dict)
performance_dashboard_api_client = PerformanceDashboardAPIClient()

View File

@@ -1,10 +0,0 @@
from app.notify_client import NotifyAdminAPIClient
class PerformancePlatformAPIClient(NotifyAdminAPIClient):
def get_performance_platform_stats(self, params_dict=None):
return self.get("/performance-platform", params=params_dict)
performance_platform_api_client = PerformancePlatformAPIClient()