Skip to content

Commit 5938937

Browse files
committed
[IMP] manifest: author and license
1 parent 742f050 commit 5938937

File tree

3 files changed

+12
-6
lines changed

3 files changed

+12
-6
lines changed

estate/__manifest__.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# -*- coding: utf-8 -*-
2-
{
3-
'name': 'Real Estate',
4-
'depends': ['base'],
5-
'application': True
6-
}
1+
{'name': 'Real Estate',
2+
'depends': ['base'],
3+
'application': True,
4+
'author': 'leker',
5+
'license': 'LGPL-3',
6+
}

estate/models/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
from . import estate_property

estate/models/estate_property.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
from odoo import models
2+
3+
4+
class Property(models.Model):
5+
_name = "estate.property"

0 commit comments

Comments
 (0)