odoo18/addons_extensions/onlyoffice_odoo/__manifest__.py

38 lines
1.5 KiB
Python

# pylint: disable=pointless-statement
{
"name": "ONLYOFFICE",
"summary": "Edit and collaborate on office files within Odoo Documents.",
"description": "The ONLYOFFICE app allows users to edit and collaborate on office files within Odoo Documents using ONLYOFFICE Docs. You can work with text documents, spreadsheets, and presentations, co-author documents in real time using two co-editing modes (Fast and Strict), Track Changes, comments, and built-in chat.", # noqa: E501
"author": "ONLYOFFICE",
"website": "https://github.com/ONLYOFFICE/onlyoffice_odoo",
"category": "Productivity",
"version": "5.3.0",
"depends": ["base", "mail"],
"external_dependencies": {"python": ["pyjwt"]},
# always loaded
"data": [
"views/templates.xml",
"views/res_config_settings_views.xml",
],
"license": "LGPL-3",
"support": "support@onlyoffice.com",
"images": [
"static/description/main_screenshot.png",
"static/description/document.png",
"static/description/sales_section.png",
"static/description/discuss_section.png",
"static/description/settings.png",
],
"installable": True,
"application": True,
"assets": {
"web.assets_backend": [
"onlyoffice_odoo/static/src/actions/*",
"onlyoffice_odoo/static/src/components/*/*.xml",
"onlyoffice_odoo/static/src/models/*.js",
"onlyoffice_odoo/static/src/views/**/*",
"onlyoffice_odoo/static/src/css/*",
],
},
}