Development

This commit is contained in:
Matthew Grotke 2026-05-27 00:42:54 -04:00
parent 55ae07160d
commit f237c69307
3 changed files with 28 additions and 0 deletions

View file

@ -305,6 +305,9 @@ def _config_datasource(name):
row['use_blocklists'] = json.dumps([
{'n': bl, 'd': bl_desc.get(bl, bl)} for bl in v.get('use_blocklists', [])
])
row['server_identity_ips'] = json.dumps([
s.get('ip', '') for s in v.get('server_identities', []) if s.get('ip')
])
rows.append(row)
return rows