| 93 | page_size_query_param = 'page_size' |
| 94 | max_page_size = 4 |
| 95 | class ApiBooksListView(ListAPIView): |
| 96 | queryset = Book.objects.all() |
| 97 | serializer_class = BookSerializer |
| 98 | pagination_class = StandardResultsSetPagination |
nothing calls this directly
no outgoing calls
no test coverage detected