fix(nodes): handle intermediates during images.get_many()

This commit is contained in:
psychedelicious
2023-05-27 09:17:06 +10:00
committed by Kent Keirsey
parent 33a0af4637
commit ee0225f4ba
3 changed files with 12 additions and 4 deletions

View File

@ -330,6 +330,7 @@ class ImageService(ImageServiceABC):
self,
image_type: ImageType,
image_category: ImageCategory,
is_intermediate: bool = False,
page: int = 0,
per_page: int = 10,
) -> PaginatedResults[ImageDTO]:
@ -337,6 +338,7 @@ class ImageService(ImageServiceABC):
results = self._services.records.get_many(
image_type,
image_category,
is_intermediate,
page,
per_page,
)