forked from OCA/social
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path__manifest__.py
28 lines (27 loc) · 929 Bytes
/
__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
# 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.0.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/ir.model.access.csv",
"wizards/whatsapp_composer.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",
],
},
}