최병욱

Results 2 issues of 최병욱

This PR resolves Issue https://github.com/vitalik/django-ninja/issues/560 * Setting default value for `paginator.items_attribute` makes `items` schemas' example value not visible * Removed default value of Output Schema ### Before ### After

When using pagination in view function, generated OpenAPI docs do not show example values of the `items` Schemas. ### Example API codes ```python from ninja.pagination import paginate @router.get("/test/list/", response=List[AssetHistorySchema]) def...