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,