-
-
Notifications
You must be signed in to change notification settings - Fork 636
/
Copy path__manifest__.py
31 lines (30 loc) · 1.04 KB
/
__manifest__.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# Copyright 2022 Creu Blanca
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
{
"name": "Mail Whatsapp Gateway",
"summary": """
Set a gateway for whatsapp""",
"version": "16.0.1.1.0",
"license": "AGPL-3",
"author": "Creu Blanca, Dixmit, Odoo Community Association (OCA)",
"website": "https://github.com/OCA/social",
"depends": ["mail_gateway", "phone_validation"],
"external_dependencies": {"python": ["requests_toolbelt"]},
"data": [
"security/security.xml",
"security/ir.model.access.csv",
"wizards/whatsapp_composer.xml",
"wizards/mail_compose_gateway_message.xml",
"views/mail_whatsapp_template_views.xml",
"views/mail_gateway.xml",
],
"assets": {
"mail.assets_messaging": [
"mail_gateway_whatsapp/static/src/models/**/*.js",
],
"web.assets_backend": [
"mail_gateway_whatsapp/static/src/components/**/*.xml",
"mail_gateway_whatsapp/static/src/components/**/*.js",
],
},
}