Skip to content

Commit

Permalink
cms_form*: make not installable
Browse files Browse the repository at this point in the history
  • Loading branch information
simahawk committed Jul 12, 2023
1 parent 1182aa6 commit 511d28f
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 12 deletions.
2 changes: 2 additions & 0 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
exclude: |
(?x)
# NOT INSTALLABLE ADDONS
^cms_form/|
^cms_form_example/|
# END NOT INSTALLABLE ADDONS
# Files and folders generated by bots, to avoid loops
^setup/|/static/description/index\.html$|
Expand Down
2 changes: 1 addition & 1 deletion cms_form/__manifest__.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,5 @@
"templates/form.xml",
"templates/widgets.xml",
],
"installable": True,
"installable": False,
}
22 changes: 11 additions & 11 deletions cms_form_example/__manifest__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,19 +2,19 @@
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).

{
'name': 'CMS Form example',
'summary': """
"name": "CMS Form example",
"summary": """
Basic content type form example""",
'version': '13.0.1.0.1',
'license': 'AGPL-3',
'author': 'Simone Orsi,Odoo Community Association (OCA)',
"version": "13.0.1.0.1",
"license": "AGPL-3",
"author": "Simone Orsi,Odoo Community Association (OCA)",
"mainainers": ["simahawk"],
'depends': [
'website_partner',
'cms_form',
"depends": [
"website_partner",
"cms_form",
],
'data': [
'templates/assets.xml',
"data": [
"templates/assets.xml",
],
'installable': True,
"installable": False,
}

0 comments on commit 511d28f

Please sign in to comment.