Skip to content

Commit

Permalink
feat: add modified and created to tracking log
Browse files Browse the repository at this point in the history
  • Loading branch information
Ian2012 committed Aug 31, 2023
1 parent ed45d2d commit 2393c81
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion completion/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@
Completion App
"""

__version__ = '4.3.0'
__version__ = '4.4.0'

default_app_config = 'completion.apps.CompletionAppConfig' # pylint: disable=invalid-name
2 changes: 2 additions & 0 deletions completion/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
}
)

0 comments on commit 2393c81

Please sign in to comment.