# -*- coding: utf-8 -*- ############################################################################# # # Cybrosys Technologies Pvt. Ltd. # # Copyright (C) 2023-TODAY Cybrosys Technologies(). # Author: Jumana J() # # You can modify it under the terms of the GNU AFFERO # GENERAL PUBLIC LICENSE (AGPL v3), Version 3. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU AFFERO GENERAL PUBLIC LICENSE (AGPL v3) for more details. # # You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE # (AGPL v3) along with this program. # If not, see . # ############################################################################# { 'name': 'Menu Lock in Odoo', 'version': '16.0.1.0.0', 'summary': """This Module will help to lock all the menu items""", 'description': """User can choose the menus and set the password for lock them""", 'category': 'Extra Tools', 'author': 'Cybrosys Techno Solutions', 'company': 'Cybrosys Techno Solutions', 'maintainer': 'Cybrosys Techno Solutions', 'images': ['static/description/banner.jpg'], 'website': 'https://www.cybrosys.com', 'depends': ['base', 'web', 'contacts'], 'data': [ 'security/ir.model.access.csv', 'views/res_users_views.xml', ], 'assets': { 'web.assets_backend': [ 'menu_lock/static/src/js/lock_action.js', 'menu_lock/static/src/xml/menu_lock.xml', 'menu_lock/static/src/css/menu_lock.css', ], }, 'license': 'AGPL-3', 'installable': True, 'application': False, 'auto_install': False, }