blunt rename of org (#620)

This commit is contained in:
Steven Reilly
2023-07-12 12:09:44 -04:00
committed by GitHub
parent 5fe81bc040
commit 13d0e46b52
107 changed files with 1471 additions and 1471 deletions

View File

@@ -6,13 +6,13 @@ class StatusApiClient(NotifyAdminAPIClient):
def get_status(self, *params):
return self.get(url='/_status', *params)
@cache.set('live-service-and-organisation-counts', ttl_in_seconds=3600)
def get_count_of_live_services_and_organisations(self):
return self.get(url='/_status/live-service-and-organisation-counts')
@cache.set('live-service-and-organization-counts', ttl_in_seconds=3600)
def get_count_of_live_services_and_organizations(self):
return self.get(url='/_status/live-service-and-organization-counts')
@cache.set('live-service-and-organisation-counts', ttl_in_seconds=3600)
def get_count_of_live_services_and_organisations_cached(self):
return self.get(url='/_status/live-service-and-organisation-counts')
@cache.set('live-service-and-organization-counts', ttl_in_seconds=3600)
def get_count_of_live_services_and_organizations_cached(self):
return self.get(url='/_status/live-service-and-organization-counts')
status_api_client = StatusApiClient()