From 76d942b828466f1ef32d1930dfbae6faaaa5aa76 Mon Sep 17 00:00:00 2001 From: Cristhian Garcia Date: Thu, 31 Aug 2023 08:13:48 -0500 Subject: [PATCH] feat: add modified and created to tracking log --- completion/models.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/completion/models.py b/completion/models.py index 23bca04..946db43 100644 --- a/completion/models.py +++ b/completion/models.py @@ -343,5 +343,7 @@ def emit_tracking_log(self): 'block_id': str(self.block_key), 'block_type': self.block_type, 'completion': self.completion, + 'modified': self.modified, + 'created': self.created, } )