We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eda8f67 commit c30e180Copy full SHA for c30e180
data_wizard/rest.py
@@ -4,6 +4,7 @@
4
from wq.db.rest.serializers import ModelSerializer
5
from .models import Run
6
from data_wizard import views as wizard
7
+from rest_framework.settings import api_settings
8
9
10
# wq.db-compatible serializers
@@ -34,6 +35,7 @@ def get_object_url(self, instance):
34
35
36
class RunViewSet(ModelViewSet, wizard.RunViewSet):
37
record_serializer_class = RecordSerializer
38
+ pagination_class = api_settings.DEFAULT_PAGINATION_CLASS
39
40
41
# wq.db router registration
0 commit comments