Skip to content

Commit

Permalink
fix: fixes problem with filterset for historic triples
Browse files Browse the repository at this point in the history
  • Loading branch information
sennierer committed Mar 5, 2024
1 parent 3b17130 commit 039666d
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions apis_core/apis_relations/filtersets.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,3 +50,11 @@ def class_in(self, queryset, name, value):
name, _ = name.split("_")
return queryset.filter(Q(**{f"{name}__self_contenttype__in": value}))
return queryset


class HistoricalTripleFilterSet(TripleFilterSet):
pass


class HistoricalTempTripleFilterSet(TripleFilterSet):
pass

0 comments on commit 039666d

Please sign in to comment.