Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
mencken-d committed Nov 19, 2024
1 parent 0876ae2 commit 251d8f2
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions netbox_rpki/graphql/filters.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
from netbox_rpki.filtersets import (
CertificateFilterSet,
CertificatePrefixFilterSet,
CertificateASNFilterSet,
CertificateAsnFilterSet,
RoaFilterSet,
OrganizationFilterSet,
RoaPrefixFilterSet,
Expand All @@ -23,7 +23,7 @@
__all__ = (
CertificateFilter,
CertificatePrefixFilter,
CertificateASNFilter,
CertificateAsnFilter,
RoaFilter,
OrganizationFilter,
RoaPrefixFilter,
Expand All @@ -39,9 +39,9 @@ class CertificateFilter(BaseFilterMixin):
class CertificatePrefixFilter(BaseFilterMixin):
pass

@strawberry_django.filter(CertificateASN, lookups=True)
@autotype_decorator(CertificateASNFilterSet)
class CertificateASNFilter(BaseFilterMixin):
@strawberry_django.filter(CertificateAs n, lookups=True)
@autotype_decorator(CertificateAsnFilterSet)
class CertificateASsnFilter(BaseFilterMixin):
pass

@strawberry_django.filter(Roa, lookups=True)
Expand Down

0 comments on commit 251d8f2

Please sign in to comment.