2020-08-13 15:42:07 +00:00
|
|
|
from djangoldp.views import LDPViewSet
|
|
|
|
from djangoldp.pagination import LDPPagination
|
|
|
|
|
|
|
|
|
|
|
|
class LDPNotificationsPagination(LDPPagination):
|
|
|
|
default_limit = 100
|
|
|
|
|
|
|
|
|
2020-08-26 09:17:10 +00:00
|
|
|
class LDPNotificationsViewSet(LDPViewSet):
|
2020-08-13 15:42:07 +00:00
|
|
|
'''overridden LDPViewSet to force pagination'''
|
|
|
|
pagination_class = LDPNotificationsPagination
|
2020-11-18 14:42:56 +00:00
|
|
|
depth = 1
|