From 9242dbff5582f9ab21528f4c0adf7817f9b37c75 Mon Sep 17 00:00:00 2001 From: Maham Akif Date: Wed, 7 Feb 2024 14:38:42 +0500 Subject: [PATCH] fix: fixed broken associated catalog column in csv --- enterprise_catalog/apps/api/v1/export_utils.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/enterprise_catalog/apps/api/v1/export_utils.py b/enterprise_catalog/apps/api/v1/export_utils.py index a19e256fe..88319a7cd 100644 --- a/enterprise_catalog/apps/api/v1/export_utils.py +++ b/enterprise_catalog/apps/api/v1/export_utils.py @@ -135,7 +135,8 @@ def fetch_catalog_types(hit): CATALOG_TYPES = [ 'A la carte', 'Business', - 'Education' + 'Education', + 'Subscription' ] return [catalog for catalog in CATALOG_TYPES if catalog in hit.get('enterprise_catalog_query_titles')]