diff --git a/netbox_acls/graphql/schema.py b/netbox_acls/graphql/schema.py index cdaa8a2..0dc2dd2 100644 --- a/netbox_acls/graphql/schema.py +++ b/netbox_acls/graphql/schema.py @@ -3,6 +3,7 @@ from .types import * + class Query(ObjectType): """ Defines the queries available to this plugin via the graphql api. diff --git a/netbox_acls/graphql/types.py b/netbox_acls/graphql/types.py index 9e05942..f43774c 100644 --- a/netbox_acls/graphql/types.py +++ b/netbox_acls/graphql/types.py @@ -72,4 +72,3 @@ class Meta: model = models.ACLStandardRule fields = "__all__" filterset_class = filtersets.ACLStandardRuleFilterSet -