23 lines
629 B
Python
23 lines
629 B
Python
# -*- 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',
|
|
}
|