Skip to content

Commit 35273cc

Browse files
Add ExportTemplatesMixin to JournalEntry model (#11251)
* Add ExportTemplatesMixin to JournalEntry model * Move mixin ahead of base class Co-authored-by: Jeremy Stretch <[email protected]>
1 parent 5af73e9 commit 35273cc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

netbox/extras/models/models.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -514,7 +514,7 @@ def to_objectchange(self, action):
514514
return objectchange
515515

516516

517-
class JournalEntry(CustomFieldsMixin, CustomLinksMixin, TagsMixin, WebhooksMixin, ChangeLoggedModel):
517+
class JournalEntry(CustomFieldsMixin, CustomLinksMixin, TagsMixin, WebhooksMixin, ExportTemplatesMixin, ChangeLoggedModel):
518518
"""
519519
A historical remark concerning an object; collectively, these form an object's journal. The journal is used to
520520
preserve historical context around an object, and complements NetBox's built-in change logging. For example, you

0 commit comments

Comments
 (0)