From b405f715e0687ff1cbca7992233bf61c8631b997 Mon Sep 17 00:00:00 2001 From: Cayo Puigdefabregas Date: Mon, 19 Jun 2023 17:54:35 +0200 Subject: [PATCH] fix devices per page --- ereuse_devicehub/resources/device/views.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ereuse_devicehub/resources/device/views.py b/ereuse_devicehub/resources/device/views.py index a8d0e88d..6e0f3f86 100644 --- a/ereuse_devicehub/resources/device/views.py +++ b/ereuse_devicehub/resources/device/views.py @@ -176,7 +176,7 @@ class DeviceView(View): """Gets many devices.""" # Compute query query = self.query(args) - devices = query.paginate(page=args['page'], per_page=30) # type: Pagination + devices = query.paginate(page=args['page'], per_page=100) # type: Pagination return things_response( self.schema.dump(devices.items, many=True, nested=1), devices.page,