How to add pagination here ? using django pagination
class UserListView(APIView):
@method_decorator(admin_decorator())
def post(self, request):
try:
controller = UserListController(data=request.data)
return Response(status=status.HTTP_200_OK, data=controller.get_data())
except Exception as e:
print(e)
return Response({"message": "Internal Server Error"}, status=status.HTTP_500_INTERNAL_SERVER_ERROR)