Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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