-
-
Notifications
You must be signed in to change notification settings - Fork 736
Expand file tree
/
Copy path__manifest__.py
More file actions
26 lines (26 loc) · 1.03 KB
/
__manifest__.py
File metadata and controls
26 lines (26 loc) · 1.03 KB
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
# Copyright 2023 Tecnativa - Carlos Roca
# License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl.html).
{
"name": "Website Form Require Legal",
"summary": "Add possibility to require confirm legal terms.",
"version": "18.0.1.0.0",
"category": "Website",
"license": "LGPL-3",
"website": "https://github.com/OCA/website",
"author": "Tecnativa, Odoo Community Association (OCA)",
"application": False,
"installable": True,
"depends": ["web_editor", "website"],
"data": ["views/snippets.xml"],
"assets": {
"website.assets_wysiwyg": [
"website_form_require_legal/static/src/js/options.esm.js",
"website_form_require_legal/static/src/xml/website_form_editor.xml",
],
"web.assets_frontend": [
"website_form_require_legal/static/src/scss/website_form_legal.scss",
"website_form_require_legal/static/src/js/terms_and_conditions.esm.js",
"website_form_require_legal/static/src/js/submit_button.esm.js",
],
},
}