From 5d8a5ab07afc713ba6fc9551d5eff1505556e7c4 Mon Sep 17 00:00:00 2001 From: Nick Sergeant Date: Tue, 15 Sep 2015 11:57:57 -0400 Subject: [PATCH] Jump snipts limit back to 200. --- snipts/api.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/snipts/api.py b/snipts/api.py index c155307..223244b 100644 --- a/snipts/api.py +++ b/snipts/api.py @@ -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):