1
0
forked from Mapan/odoo17e
odoo17e-kedaikipas58/addons/mail_enterprise/__manifest__.py
2024-12-10 09:04:09 +07:00

31 lines
894 B
Python

# -*- coding: utf-8 -*-
# Part of Odoo. See LICENSE file for full copyright and licensing details.
{
'name': 'Mail Enterprise',
'category': 'Productivity/Discuss',
'depends': ['mail', 'web_mobile'],
'description': """
Bridge module for mail and enterprise
=====================================
Display a preview of the last chatter attachment in the form view for large
screen devices.
""",
'auto_install': True,
'license': 'OEEL-1',
'assets': {
'web.assets_backend': [
'mail_enterprise/static/src/core/common/**/*',
'mail_enterprise/static/src/**/*',
],
'web.assets_tests': [
'mail_enterprise/static/tests/tours/**/*',
],
'web.qunit_suite_tests': [
'mail_enterprise/static/tests/**/*.js',
('remove', 'mail_enterprise/static/tests/tours/**/*'),
],
}
}