djangoldp-notification/djangoldp_notification/views.py
Calum Mackervoy d0f4f5380a update: updated to new DjangoLDP cache
removed workaround, updated tests
2021-04-27 15:46:26 +00:00

14 lines
369 B
Python

from djangoldp.serializers import LDPSerializer
from djangoldp.views import LDPViewSet
from djangoldp.pagination import LDPPagination
class LDPNotificationsPagination(LDPPagination):
default_limit = 80
class LDPNotificationsViewSet(LDPViewSet):
'''overridden LDPViewSet to force pagination'''
pagination_class = LDPNotificationsPagination
depth = 0