fixed tests, cleanup, frontend fix

This commit is contained in:
vabene1111
2025-03-31 09:45:50 +02:00
parent 42e6e0bc50
commit 235c5d6b4a
6 changed files with 20 additions and 17 deletions

View File

@@ -1105,6 +1105,7 @@ class RecipePagination(PageNumberPagination):
OpenApiParameter(name='rating_gte', description=_('Rating a recipe should have or greater.'), type=int),
OpenApiParameter(name='rating_lte', description=_('Rating a recipe should have or smaller.'), type=int),
OpenApiParameter(name='timescooked', description=_('Filter recipes cooked X times.'), type=int),
OpenApiParameter(name='timescooked_gte', description=_('Filter recipes cooked X times or more.'), type=int),
OpenApiParameter(name='timescooked_lte', description=_('Filter recipes cooked X times or less.'), type=int),