From cf8826b74242a10c0ed66555fd3086e9436d70af Mon Sep 17 00:00:00 2001 From: Brian Beggs Date: Mon, 18 Sep 2023 16:17:52 -0400 Subject: [PATCH] chore: update max allowed highlights per set and max number of highlight sets --- enterprise_catalog/apps/api/v1/views/curation/highlights.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/enterprise_catalog/apps/api/v1/views/curation/highlights.py b/enterprise_catalog/apps/api/v1/views/curation/highlights.py index 6dd8b87f6..5df4c5d59 100644 --- a/enterprise_catalog/apps/api/v1/views/curation/highlights.py +++ b/enterprise_catalog/apps/api/v1/views/curation/highlights.py @@ -43,8 +43,8 @@ REQUEST_CACHE_NAMESPACE = 'CURATION_REQUEST_CACHE' -CONTENT_PER_HIGHLIGHTSET_LIMIT = 12 -HIGHLIGHTSETS_PER_ENTERPRISE_LIMIT = 8 +CONTENT_PER_HIGHLIGHTSET_LIMIT = 24 +HIGHLIGHTSETS_PER_ENTERPRISE_LIMIT = 12 logger = logging.getLogger(__name__)