1234567891011121314151617181920212223 |
- # -*- coding: utf-8 -*-
- # Part of Odoo. See LICENSE file for full copyright and licensing details.
- {
- 'name': 'Onboarding toolbox',
- 'version': '1.0',
- 'category': 'Hidden',
- 'sequence': 9001,
- 'description': """
- This module allows to manage onboardings and their progress
- ================================================================================
- """,
- 'depends': ['base'],
- 'installable': True,
- 'data': [
- 'data/onboarding_data.xml',
- 'views/onboarding_views.xml',
- 'views/onboarding_menus.xml',
- 'security/ir.model.access.csv',
- ],
- 'license': 'LGPL-3',
- }
|