Skip to content

Commit

Permalink
Remove Safes private endpoint pagination limit
Browse files Browse the repository at this point in the history
  • Loading branch information
Uxio0 committed Jul 15, 2019
1 parent 80b0315 commit 0cd6be7
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion safe_relay_service/relay/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -437,7 +437,6 @@ def get_queryset(self):

class PrivateSafesView(ListAPIView):
authentication_classes = (TokenAuthentication,)
pagination_class = DefaultPagination
permission_classes = (IsAuthenticated,)
queryset = SafeContract.objects.deployed().with_balance().order_by('created')
serializer_class = SafeContractSerializer
2 changes: 1 addition & 1 deletion safe_relay_service/version.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
__version__ = '3.5.15'
__version__ = '3.5.16'
__version_info__ = tuple([int(num) if num.isdigit() else num for num in __version__.replace('-', '.', 1).split('.')])

0 comments on commit 0cd6be7

Please sign in to comment.