Odoo18-Base/addons/mail_bot/__manifest__.py

24 lines
602 B
Python
Raw Permalink Normal View History

2025-01-06 10:57:38 +07:00
# -*- coding: utf-8 -*-
# Part of Odoo. See LICENSE file for full copyright and licensing details.
{
'name': 'OdooBot',
'version': '1.2',
'category': 'Productivity/Discuss',
'summary': 'Add OdooBot in discussions',
'website': 'https://www.odoo.com/app/discuss',
'depends': ['mail'],
'auto_install': True,
'installable': True,
'data': [
'views/res_users_views.xml',
'data/mailbot_data.xml',
],
'assets': {
'web.assets_backend': [
'mail_bot/static/src/scss/odoobot_style.scss',
],
},
'license': 'LGPL-3',
}