Skip to content

Commit

Permalink
Fixes: netbox-community#14832 Extend GraphQL FHRPGroupType with IPAdd…
Browse files Browse the repository at this point in the history
…ressesMixin
  • Loading branch information
Leo1003 committed Mar 4, 2024
1 parent bdcf4c4 commit 56003ee
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion netbox/ipam/graphql/types.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import graphene

from ipam import filtersets, models
from .mixins import IPAddressesMixin
from netbox.graphql.scalars import BigInt
from netbox.graphql.types import BaseObjectType, OrganizationalObjectType, NetBoxObjectType

Expand Down Expand Up @@ -71,7 +72,7 @@ class Meta:
filterset_class = filtersets.AggregateFilterSet


class FHRPGroupType(NetBoxObjectType):
class FHRPGroupType(NetBoxObjectType, IPAddressesMixin):

class Meta:
model = models.FHRPGroup
Expand Down

0 comments on commit 56003ee

Please sign in to comment.