Store a history of changes, used for future lookup/diff/explore changes UI

This commit is contained in:
Leigh Morresi
2021-01-28 10:39:14 +01:00
parent 93907ff914
commit 01359e4811
2 changed files with 14 additions and 3 deletions

View File

@@ -18,7 +18,8 @@ class ChangeDetectionStore:
'last_changed': 0,
'title': None,
'uuid': str(uuid.uuid4()),
'headers' : {}
'headers' : {}, # Extra headers to send
'history' : {} # Dict of timestamp and output stripped filename
}
try: