Add notif count and history count together

This commit is contained in:
Andrew Shumway
2023-10-17 11:11:17 -06:00
committed by Carlo Costino
parent 2fbda1cd0c
commit 81f4b1436d
2 changed files with 6 additions and 5 deletions

View File

@@ -498,7 +498,7 @@ class ServiceAPIClient(NotifyAdminAPIClient):
return int(count)
def get_global_notification_count(self, service_id):
return self.get("/service/{}/notification-count".format(service_id))
return self.get("/service/{}/notification-count".format(service_id))
service_api_client = ServiceAPIClient()