diff --git a/jsonifier/README.rst b/jsonifier/README.rst new file mode 100644 index 000000000..8f2cd2a5f --- /dev/null +++ b/jsonifier/README.rst @@ -0,0 +1,3 @@ +This module is meant to replace `base_jsonify`. +Once is confirmed that it can be published on the apps store +the switch will be made. diff --git a/jsonifier/__init__.py b/jsonifier/__init__.py new file mode 100644 index 000000000..e69de29bb diff --git a/jsonifier/__manifest__.py b/jsonifier/__manifest__.py new file mode 100644 index 000000000..c2ad800c5 --- /dev/null +++ b/jsonifier/__manifest__.py @@ -0,0 +1,16 @@ +# Copyright 2017-2018 Akretion (http://www.akretion.com) +# Sébastien BEAU +# Raphaël Reverdy +# License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl.html). + +{ + "name": "JSONifier", + "summary": "JSON-ify data for all models - SKELETON", + "version": "14.0.0.1.0", + "category": "Uncategorized", + "website": "https://github.com/OCA/server-tools", + "author": "Akretion, ACSONE, Camptocamp, Odoo Community Association (OCA)", + "license": "LGPL-3", + "installable": True, + "depends": ["base"], +}