diff --git a/netbox_branching/models/branches.py b/netbox_branching/models/branches.py index 02d4770..da7078e 100644 --- a/netbox_branching/models/branches.py +++ b/netbox_branching/models/branches.py @@ -32,6 +32,7 @@ record_applied_change, ) from utilities.exceptions import AbortRequest, AbortTransaction +from utilities.querysets import RestrictedQuerySet from .changes import ObjectChange __all__ = ( @@ -677,6 +678,8 @@ class BranchEvent(models.Model): editable=False ) + objects = RestrictedQuerySet.as_manager() + class Meta: ordering = ('-time',) verbose_name = _('branch event')