Jump snipts limit back to 200.

master
Nick Sergeant 2015-09-15 11:57:57 -04:00
parent 5467ccbd5f
commit 5d8a5ab07a
1 changed files with 2 additions and 2 deletions

View File

@ -234,7 +234,7 @@ class PublicSniptResource(ModelResource):
allowed_methods = ['get']
filtering = {'user': 'exact', 'blog_post': 'exact'}
ordering = ['created', 'modified']
max_limit = 20
max_limit = 200
cache = SimpleCache()
def dehydrate(self, bundle):
@ -362,7 +362,7 @@ class PrivateSniptResource(ModelResource):
validation = SniptValidation()
ordering = ['created', 'modified']
always_return_data = True
max_limit = 20
max_limit = 200
cache = SimpleCache()
def dehydrate(self, bundle):