From d30ae7e367f658ffb16649d805e84261b53364b3 Mon Sep 17 00:00:00 2001 From: Arthur Date: Fri, 7 Oct 2022 08:42:44 -0700 Subject: [PATCH] 10595 move contacts to Provider --- netbox/circuits/graphql/types.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/netbox/circuits/graphql/types.py b/netbox/circuits/graphql/types.py index b7fce9041..5582de798 100644 --- a/netbox/circuits/graphql/types.py +++ b/netbox/circuits/graphql/types.py @@ -37,7 +37,7 @@ class CircuitTypeType(OrganizationalObjectType): filterset_class = filtersets.CircuitTypeFilterSet -class ProviderType(NetBoxObjectType): +class ProviderType(NetBoxObjectType, ContactsMixin): class Meta: model = models.Provider @@ -45,7 +45,7 @@ class ProviderType(NetBoxObjectType): filterset_class = filtersets.ProviderFilterSet -class ProviderNetworkType(NetBoxObjectType, ContactsMixin): +class ProviderNetworkType(NetBoxObjectType): class Meta: model = models.ProviderNetwork