From 5c3de0d63fc8a2f768ad85be4e003a12aec98587 Mon Sep 17 00:00:00 2001 From: lkerroum Date: Mon, 15 Dec 2025 14:08:02 +0100 Subject: [PATCH 1/2] [ADD] estate: new app real estate --- estate/__init__.py | 0 estate/__manifest__.py | 6 ++++++ 2 files changed, 6 insertions(+) create mode 100644 estate/__init__.py create mode 100644 estate/__manifest__.py diff --git a/estate/__init__.py b/estate/__init__.py new file mode 100644 index 00000000000..e69de29bb2d diff --git a/estate/__manifest__.py b/estate/__manifest__.py new file mode 100644 index 00000000000..f8c00b763bd --- /dev/null +++ b/estate/__manifest__.py @@ -0,0 +1,6 @@ +# -*- coding: utf-8 -*- +{ + 'name': 'Real Estate', + 'depends': ['base'], + 'application': True +} \ No newline at end of file From bbdb7f4c019d8c6eb02ee4b33e16c35b80d059d0 Mon Sep 17 00:00:00 2001 From: lkerroum Date: Mon, 15 Dec 2025 14:27:11 +0100 Subject: [PATCH 2/2] [IMP] manifest: author and license --- estate/__manifest__.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/estate/__manifest__.py b/estate/__manifest__.py index f8c00b763bd..e9ab843e999 100644 --- a/estate/__manifest__.py +++ b/estate/__manifest__.py @@ -1,6 +1,6 @@ -# -*- coding: utf-8 -*- -{ - 'name': 'Real Estate', +{ 'name': 'Real Estate', 'depends': ['base'], - 'application': True -} \ No newline at end of file + 'application': True, + 'author': 'leker', + 'license': 'LGPL-3' +}