We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent de62280 commit f0e1371Copy full SHA for f0e1371
netbox/ipam/graphql/types.py
@@ -1,6 +1,7 @@
1
import graphene
2
3
from ipam import filtersets, models
4
+from .mixins import IPAddressesMixin
5
from netbox.graphql.scalars import BigInt
6
from netbox.graphql.types import BaseObjectType, OrganizationalObjectType, NetBoxObjectType
7
@@ -71,7 +72,7 @@ class Meta:
71
72
filterset_class = filtersets.AggregateFilterSet
73
74
-class FHRPGroupType(NetBoxObjectType):
75
+class FHRPGroupType(NetBoxObjectType, IPAddressesMixin):
76
77
class Meta:
78
model = models.FHRPGroup
0 commit comments