mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-05-05 16:38:59 -04:00
Fix the link on the data-retention/edit.html
Adding new service_api_client methods to get data for the right amount of days.
This commit is contained in:
@@ -41,8 +41,14 @@ class ServiceAPIClient(NotifyAdminAPIClient):
|
||||
"""
|
||||
return self.get('/service/{0}'.format(service_id))
|
||||
|
||||
def get_service_statistics(self, service_id, today_only):
|
||||
return self.get('/service/{0}/statistics'.format(service_id), params={'today_only': today_only})['data']
|
||||
# def get_service_statistics(self, service_id, today_only):
|
||||
# return self.get('/service/{0}/statistics'.format(service_id), params={'today_only': today_only})['data']
|
||||
|
||||
def get_service_statistics(self, service_id, limit_days=7):
|
||||
return self.get('/service/{0}/statistics'.format(service_id), params={'limit_days': limit_days})['data']
|
||||
|
||||
def get_service_statistics_for_today(self, service_id):
|
||||
return self.get('/service/{0}/statistics'.format(service_id), params={'today_only': True})['data']
|
||||
|
||||
def get_services(self, params_dict=None):
|
||||
"""
|
||||
|
||||
Reference in New Issue
Block a user