Skip to content

Commit b1d014b

Browse files
authoredMar 21, 2025··
Fixes #18949: Add missing GraphQL ContactsMixin in types with ContactAssignments
1 parent 7db0765 commit b1d014b

File tree

5 files changed

+13
-12
lines changed

5 files changed

+13
-12
lines changed
 

‎netbox/circuits/graphql/types.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ class ProviderType(NetBoxObjectType, ContactsMixin):
4343
fields='__all__',
4444
filters=ProviderAccountFilter
4545
)
46-
class ProviderAccountType(NetBoxObjectType):
46+
class ProviderAccountType(ContactsMixin, NetBoxObjectType):
4747
provider: Annotated["ProviderType", strawberry.lazy('circuits.graphql.types')]
4848

4949
circuits: List[Annotated["CircuitType", strawberry.lazy('circuits.graphql.types')]]

‎netbox/ipam/graphql/types.py

+6-5
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55

66
from circuits.graphql.types import ProviderType
77
from dcim.graphql.types import SiteType
8+
from extras.graphql.mixins import ContactsMixin
89
from ipam import models
910
from netbox.graphql.scalars import BigInt
1011
from netbox.graphql.types import BaseObjectType, NetBoxObjectType, OrganizationalObjectType
@@ -83,7 +84,7 @@ class ASNRangeType(NetBoxObjectType):
8384
fields='__all__',
8485
filters=AggregateFilter
8586
)
86-
class AggregateType(NetBoxObjectType, BaseIPAddressFamilyType):
87+
class AggregateType(NetBoxObjectType, ContactsMixin, BaseIPAddressFamilyType):
8788
prefix: str
8889
rir: Annotated["RIRType", strawberry.lazy('ipam.graphql.types')] | None
8990
tenant: Annotated["TenantType", strawberry.lazy('tenancy.graphql.types')] | None
@@ -120,7 +121,7 @@ def interface(self) -> Annotated[Union[
120121
exclude=('assigned_object_type', 'assigned_object_id', 'address'),
121122
filters=IPAddressFilter
122123
)
123-
class IPAddressType(NetBoxObjectType, BaseIPAddressFamilyType):
124+
class IPAddressType(NetBoxObjectType, ContactsMixin, BaseIPAddressFamilyType):
124125
address: str
125126
vrf: Annotated["VRFType", strawberry.lazy('ipam.graphql.types')] | None
126127
tenant: Annotated["TenantType", strawberry.lazy('tenancy.graphql.types')] | None
@@ -144,7 +145,7 @@ def assigned_object(self) -> Annotated[Union[
144145
fields='__all__',
145146
filters=IPRangeFilter
146147
)
147-
class IPRangeType(NetBoxObjectType):
148+
class IPRangeType(NetBoxObjectType, ContactsMixin):
148149
start_address: str
149150
end_address: str
150151
vrf: Annotated["VRFType", strawberry.lazy('ipam.graphql.types')] | None
@@ -157,7 +158,7 @@ class IPRangeType(NetBoxObjectType):
157158
exclude=('scope_type', 'scope_id', '_location', '_region', '_site', '_site_group'),
158159
filters=PrefixFilter
159160
)
160-
class PrefixType(NetBoxObjectType, BaseIPAddressFamilyType):
161+
class PrefixType(NetBoxObjectType, ContactsMixin, BaseIPAddressFamilyType):
161162
prefix: str
162163
vrf: Annotated["VRFType", strawberry.lazy('ipam.graphql.types')] | None
163164
tenant: Annotated["TenantType", strawberry.lazy('tenancy.graphql.types')] | None
@@ -217,7 +218,7 @@ class RouteTargetType(NetBoxObjectType):
217218
fields='__all__',
218219
filters=ServiceFilter
219220
)
220-
class ServiceType(NetBoxObjectType):
221+
class ServiceType(NetBoxObjectType, ContactsMixin):
221222
ports: List[int]
222223
device: Annotated["DeviceType", strawberry.lazy('dcim.graphql.types')] | None
223224
virtual_machine: Annotated["VirtualMachineType", strawberry.lazy('virtualization.graphql.types')] | None

‎netbox/tenancy/graphql/types.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
import strawberry
44
import strawberry_django
55

6-
from extras.graphql.mixins import CustomFieldsMixin, TagsMixin
6+
from extras.graphql.mixins import CustomFieldsMixin, TagsMixin, ContactsMixin
77
from netbox.graphql.types import BaseObjectType, OrganizationalObjectType, NetBoxObjectType
88
from tenancy import models
99
from .mixins import ContactAssignmentsMixin
@@ -28,7 +28,7 @@
2828
fields='__all__',
2929
filters=TenantFilter
3030
)
31-
class TenantType(NetBoxObjectType):
31+
class TenantType(ContactsMixin, NetBoxObjectType):
3232
group: Annotated["TenantGroupType", strawberry.lazy('tenancy.graphql.types')] | None
3333

3434
asns: List[Annotated["ASNType", strawberry.lazy('ipam.graphql.types')]]

‎netbox/virtualization/graphql/types.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ class ComponentType(NetBoxObjectType):
3333
exclude=('scope_type', 'scope_id', '_location', '_region', '_site', '_site_group'),
3434
filters=ClusterFilter
3535
)
36-
class ClusterType(VLANGroupsMixin, NetBoxObjectType):
36+
class ClusterType(ContactsMixin, VLANGroupsMixin, NetBoxObjectType):
3737
type: Annotated["ClusterTypeType", strawberry.lazy('virtualization.graphql.types')] | None
3838
group: Annotated["ClusterGroupType", strawberry.lazy('virtualization.graphql.types')] | None
3939
tenant: Annotated["TenantType", strawberry.lazy('tenancy.graphql.types')] | None
@@ -55,7 +55,7 @@ def scope(self) -> Annotated[Union[
5555
fields='__all__',
5656
filters=ClusterGroupFilter
5757
)
58-
class ClusterGroupType(VLANGroupsMixin, OrganizationalObjectType):
58+
class ClusterGroupType(ContactsMixin, VLANGroupsMixin, OrganizationalObjectType):
5959

6060
clusters: List[Annotated["ClusterType", strawberry.lazy('virtualization.graphql.types')]]
6161

‎netbox/vpn/graphql/types.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
fields='__all__',
2828
filters=TunnelGroupFilter
2929
)
30-
class TunnelGroupType(OrganizationalObjectType):
30+
class TunnelGroupType(ContactsMixin, OrganizationalObjectType):
3131

3232
tunnels: List[Annotated["TunnelType", strawberry.lazy('vpn.graphql.types')]]
3333

@@ -48,7 +48,7 @@ class TunnelTerminationType(CustomFieldsMixin, TagsMixin, ObjectType):
4848
fields='__all__',
4949
filters=TunnelFilter
5050
)
51-
class TunnelType(NetBoxObjectType):
51+
class TunnelType(ContactsMixin, NetBoxObjectType):
5252
group: Annotated["TunnelGroupType", strawberry.lazy('vpn.graphql.types')] | None
5353
ipsec_profile: Annotated["IPSecProfileType", strawberry.lazy('vpn.graphql.types')] | None
5454
tenant: Annotated["TenantType", strawberry.lazy('tenancy.graphql.types')] | None

0 commit comments

Comments
 (0)
Please sign in to comment.