Development

This commit is contained in:
Matthew Grotke 2026-05-27 00:58:05 -04:00
parent 182e605e4e
commit 9c395ab1e8
3 changed files with 12 additions and 1 deletions

View file

@ -309,6 +309,9 @@ def _config_datasource(name):
{'n': s['ip'], 'd': s['ip'], 'short': '.' + s['ip'].rsplit('.', 1)[-1], 'mini': '.' + s['ip'].rsplit('.', 1)[-1]}
for s in v.get('server_identities', []) if s.get('ip')
])
row['server_identity_descriptions'] = json.dumps([
s.get('description', '') for s in v.get('server_identities', []) if s.get('ip')
])
rows.append(row)
return rows