1
0
forked from erp-dev/erp

feat: max return of super viewset

This commit is contained in:
2026-03-09 22:43:29 +08:00
parent 663276288e
commit e2b91f977b

View File

@@ -15,8 +15,8 @@ class LimitedLimitOffsetPagination(LimitOffsetPagination):
- 最大每页返回 500 条 - 最大每页返回 500 条
- 防止前端请求过多数据 - 防止前端请求过多数据
""" """
default_limit = 500 default_limit = 800
max_limit = 500 max_limit = 1000
class LimitedModelViewSet(viewsets.ModelViewSet): class LimitedModelViewSet(viewsets.ModelViewSet):