Skip to content

Commit f0e1371

Browse files
Leo1003jeremystretch
authored andcommitted
Fixes: #14832 Extend GraphQL FHRPGroupType with IPAddressesMixin
1 parent de62280 commit f0e1371

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

netbox/ipam/graphql/types.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
import graphene
22

33
from ipam import filtersets, models
4+
from .mixins import IPAddressesMixin
45
from netbox.graphql.scalars import BigInt
56
from netbox.graphql.types import BaseObjectType, OrganizationalObjectType, NetBoxObjectType
67

@@ -71,7 +72,7 @@ class Meta:
7172
filterset_class = filtersets.AggregateFilterSet
7273

7374

74-
class FHRPGroupType(NetBoxObjectType):
75+
class FHRPGroupType(NetBoxObjectType, IPAddressesMixin):
7576

7677
class Meta:
7778
model = models.FHRPGroup

0 commit comments

Comments
 (0)