djangoldp-notification/djangoldp_notification/views.py

12 lines
307 B
Python
Raw Normal View History

2020-08-13 15:42:07 +00:00
from djangoldp.views import LDPViewSet
from djangoldp.pagination import LDPPagination
class LDPNotificationsPagination(LDPPagination):
default_limit = 100
class LDPNotifcationsViewSet(LDPViewSet):
'''overridden LDPViewSet to force pagination'''
pagination_class = LDPNotificationsPagination