From e6d6ad01ef881cef928b1e762143c9adcd766643 Mon Sep 17 00:00:00 2001 From: luis Date: Tue, 20 Feb 2024 10:50:37 +0100 Subject: [PATCH] website_search_products: Fix manifest --- website_search_products/__manifest__.py | 26 +++++++++---------------- 1 file changed, 9 insertions(+), 17 deletions(-) diff --git a/website_search_products/__manifest__.py b/website_search_products/__manifest__.py index 9f95ae0..44e654c 100644 --- a/website_search_products/__manifest__.py +++ b/website_search_products/__manifest__.py @@ -2,22 +2,14 @@ # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). { - 'name': 'Website Search Products', - 'description': """ + "name": "Website Search Products", + "description": """ Allows portal users to search products in a table with filters.""", - 'version': '12.0.1.0.0', - 'license': 'AGPL-3', - 'author': 'Criptomart', - 'website': 'https://criptomart.net', - 'depends': [ - "stock", - "website" - ], - 'data': [ - "data/menu.xml", - "data/ir_rule.xml", - "views/web_templates.xml" - ], - 'demo': [ - ], + "version": "12.0.1.0.0", + "license": "AGPL-3", + "author": "Criptomart", + "website": "https://criptomart.net", + "depends": ["stock", "website"], + "data": ["data/menu.xml", "views/web_templates.xml"], + "demo": [], }