NestedGroupModel should inherit from NetBoxModel

This commit is contained in:
Jeremy Stretch
2025-10-21 10:48:07 -04:00
parent 800cf5cf3d
commit a4d52b46ed

View File

@@ -139,7 +139,7 @@ class PrimaryModel(OwnerMixin, NetBoxModel):
abstract = True
class NestedGroupModel(NetBoxFeatureSet, OwnerMixin, MPTTModel):
class NestedGroupModel(OwnerMixin, NetBoxModel, MPTTModel):
"""
Base model for objects which are used to form a hierarchy (regions, locations, etc.). These models nest
recursively using MPTT. Within each parent, each child instance must have a unique name.