diff --git a/app/api/services/products.py b/app/api/services/products.py index 0ada032..e072a80 100644 --- a/app/api/services/products.py +++ b/app/api/services/products.py @@ -68,7 +68,8 @@ class ProductsService(BaseService): 'product_id': t.product_id, 'description': t.description, 'name': t.name, - 'status': t.status, + # 'status': t.status, + 'status': 5, 'added': t.added.isoformat() if t.added else None, 'updated': t.updated.isoformat() if t.updated else None, 'banner': t.banner,