Milestone 5 polish

This commit is contained in:
2026-04-26 00:08:55 +02:00
parent 8d1e1ff583
commit e8fdfe6e17
6 changed files with 76 additions and 5 deletions

View File

@@ -771,6 +771,8 @@ def search(
status: str | None = None,
language: str | None = None,
framework: str | None = None,
ability: str | None = None,
capability: str | None = None,
service: RegistryService = Depends(get_service),
) -> list[dict[str, object]]:
return [
@@ -780,6 +782,8 @@ def search(
status=status,
language=language,
framework=framework,
ability=ability,
capability=capability,
)
]