fix - org linked rancher list pagination bug

This commit is contained in:
2025-12-23 11:50:37 +03:30
parent 846e57dd41
commit 0937d1f3ca
2 changed files with 5 additions and 3 deletions

View File

@@ -306,7 +306,9 @@ class RancherOrganizationLinkViewSet(
result = self.orgs_linked_rancher(org=org, org_type_key='CO')
page = self.paginate_queryset(result) # paginate queryset
return self.get_paginated_response(result)
if page is not None:
return self.get_paginated_response(page)
return Response(result)
@action(
methods=['get'],