Skip to content
Discussion options

You must be logged in to vote

Hi @mr1716,

Journaling is supported for plugin models. You don’t need to add any custom implementation for it.

If your model subclasses netbox.models.NetBoxModel, journaling is already enabled by default (via JournalingMixin, which provides the journal_entries relation). If you’re not subclassing NetBoxModel, you can also opt in by inheriting from JournalingMixin directly.

One common “gotcha” is UI exposure: the feature can be present on the model, but you won’t see the Journal tab unless your model’s detail view/URLs are registered using the standard mechanisms (e.g. including the model URLs via get_model_urls() / view registration).

Also, just a heads-up: the link you shared points to t…

Replies: 1 comment

Comment options

You must be logged in to vote
0 replies
Answer selected by mr1716
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
2 participants