mirror of
https://github.com/cwinfo/powerdns-admin.git
synced 2024-11-08 14:40:27 +00:00
Merge pull request #1377 from raunz/historyfix
API record change history format fix
This commit is contained in:
commit
4da10a9d00
@ -1109,11 +1109,13 @@ def api_zone_forward(server_id, zone_id):
|
|||||||
if Setting().get('enable_api_rr_history'):
|
if Setting().get('enable_api_rr_history'):
|
||||||
if request.method in ['POST', 'PATCH']:
|
if request.method in ['POST', 'PATCH']:
|
||||||
data = request.get_json(force=True)
|
data = request.get_json(force=True)
|
||||||
for rrset_data in data['rrsets']:
|
history = History(
|
||||||
history = History(msg='{0} zone {1} record of {2}'.format(
|
msg='Apply record changes to domain {0}'.format(zone_id.rstrip('.')),
|
||||||
rrset_data['changetype'].lower(), rrset_data['type'],
|
detail = json.dumps({
|
||||||
rrset_data['name'].rstrip('.')),
|
'domain': zone_id.rstrip('.'),
|
||||||
detail=json.dumps(data),
|
'add_rrsets': list(filter(lambda r: r['changetype'] == "REPLACE", data['rrsets'])),
|
||||||
|
'del_rrsets': list(filter(lambda r: r['changetype'] == "DELETE", data['rrsets']))
|
||||||
|
}),
|
||||||
created_by=g.apikey.description,
|
created_by=g.apikey.description,
|
||||||
domain_id=Domain().get_id_by_name(zone_id.rstrip('.')))
|
domain_id=Domain().get_id_by_name(zone_id.rstrip('.')))
|
||||||
history.add()
|
history.add()
|
||||||
|
Loading…
Reference in New Issue
Block a user