From 5cdf2c4ac8aa622f20f5e6f48b3f81b9c3277c50 Mon Sep 17 00:00:00 2001 From: Daniel Yohan Date: Thu, 14 Nov 2019 13:54:56 -0300 Subject: [PATCH] [fix] Pagination NLP --- bothub/api/v2/nlp/views.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bothub/api/v2/nlp/views.py b/bothub/api/v2/nlp/views.py index 0e682049..7c00a0df 100644 --- a/bothub/api/v2/nlp/views.py +++ b/bothub/api/v2/nlp/views.py @@ -41,7 +41,7 @@ def check_auth(request): class NLPPagination(pagination.PageNumberPagination): - page_size = 2 + page_size = 200 class RepositoryAuthorizationTrainViewSet(