Odoo18-Base/addons/cloud_storage/__manifest__.py

23 lines
613 B
Python
Raw Permalink Normal View History

2025-01-06 10:57:38 +07:00
# Part of Odoo. See LICENSE file for full copyright and licensing details.
{
"name": "Cloud Storage",
"summary": """Store chatter attachments in the cloud""",
"category": "Technical Settings",
"version": "1.0",
"depends": ["mail"],
"data": [
"views/settings.xml",
],
'assets': {
'web.assets_backend': [
'cloud_storage/static/src/core/common/**/*',
'cloud_storage/static/src/**/web_portal/**/*',
],
'mail.assets_public': [
'cloud_storage/static/src/core/common/**/*',
],
},
'license': 'LGPL-3',
}