1
0
Fork 0

Makes outbox filter-able

This commit is contained in:
Mouse Reeve 2020-12-30 13:14:16 -08:00
parent 747167c579
commit c1243b5c21
5 changed files with 45 additions and 4 deletions

View file

@ -237,7 +237,9 @@ class OrderedCollectionPageMixin(ActivitypubMixin):
).serialize()
def to_ordered_collection_page(queryset, remote_id, id_only=False, page=1):
# pylint: disable=unused-argument
def to_ordered_collection_page(
queryset, remote_id, id_only=False, page=1, **kwargs):
''' serialize and pagiante a queryset '''
paginated = Paginator(queryset, PAGE_LENGTH)