social/mail_post_defer/__manifest__.py

26 lines
777 B
Python

# Copyright 2022-2023 Moduon Team S.L. <info@moduon.team>
# License LGPL-3.0 or later (https://www.gnu.org/licenses/lgpl).
{
"name": "Deferred Message Posting",
"summary": "Faster and cancellable outgoing messages",
"version": "15.0.1.0.0",
"development_status": "Alpha",
"category": "Productivity/Discuss",
"website": "https://github.com/OCA/social",
"author": "Moduon, Odoo Community Association (OCA)",
"maintainers": ["Yajo"],
"license": "LGPL-3",
"depends": [
"mail",
],
"post_init_hook": "post_init_hook",
"assets": {
"web.assets_backend": [
"mail_post_defer/static/src/**/*.js",
],
"web.assets_qweb": [
"mail_post_defer/static/src/**/*.xml",
],
},
}