From 8ad7fa6d09a6fedde38d6591767c878fac265759 Mon Sep 17 00:00:00 2001 From: Simone Orsi Date: Wed, 20 Apr 2022 13:38:15 +0200 Subject: [PATCH] Add jsonifier (skeleton) --- jsonifier/README.rst | 3 +++ jsonifier/__init__.py | 0 jsonifier/__manifest__.py | 16 ++++++++++++++++ 3 files changed, 19 insertions(+) create mode 100644 jsonifier/README.rst create mode 100644 jsonifier/__init__.py create mode 100644 jsonifier/__manifest__.py 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"], +}