From b8c965de2c60c5f898ae0f2a026880d18cf22b63 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aur=C3=A9lien=20Bompard?= Date: Tue, 17 Feb 2026 17:12:09 +0100 Subject: [PATCH] HyperKitty: activate pagination in the API MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Aurélien Bompard --- roles/mailman3/templates/settings.py.j2 | 1 + 1 file changed, 1 insertion(+) diff --git a/roles/mailman3/templates/settings.py.j2 b/roles/mailman3/templates/settings.py.j2 index 2684715d86..6124c75978 100644 --- a/roles/mailman3/templates/settings.py.j2 +++ b/roles/mailman3/templates/settings.py.j2 @@ -300,6 +300,7 @@ Q_CLUSTER = { # REST_FRAMEWORK = { 'PAGE_SIZE': 10, + 'DEFAULT_PAGINATION_CLASS': 'rest_framework.pagination.PageNumberPagination', 'DEFAULT_RENDERER_CLASSES': [ 'rest_framework.renderers.JSONRenderer', ],