This commit is contained in:
@@ -1510,7 +1510,7 @@ class ApiHandler(BaseHTTPRequestHandler):
|
||||
"terms_status": raw["terms_status"] or policy.get("terms_status") or config.get("terms_status") or "unreviewed",
|
||||
"owner": raw["owner"] or policy.get("owner") or config.get("owner") or "Not assigned",
|
||||
"rate_limit": raw["rate_limit"] or policy.get("rate_limit") or config.get("rate_limit") or "Not set",
|
||||
"daily_quota": raw["daily_quota"] if raw["daily_quota"] is not None else quota.get("daily_quota", config.get("daily_quota"))})
|
||||
"daily_quota": raw["daily_quota"] if raw["daily_quota"] is not None else policy.get("daily_quota", config.get("daily_quota"))})
|
||||
item.pop("config_json", None)
|
||||
items.append(item)
|
||||
return self.send_json(200,{"organization_id":org,"items":items})
|
||||
|
||||
Reference in New Issue
Block a user