mirror of
https://github.com/netbox-community/netbox.git
synced 2026-01-23 12:08:43 -06:00
NestedGroupModel should inherit from NetBoxModel
This commit is contained in:
@@ -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.
|
||||
|
||||
Reference in New Issue
Block a user