Merge pull request #868 from expsa/fix-reset-password

fix reset password
This commit is contained in:
eslam 2024-08-22 10:08:36 +03:00 committed by GitHub
commit 66ff733f0e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 2 deletions

View File

@ -27,8 +27,8 @@ TYPE2CLEAN = {
'date': lambda val: val.date() if val else False,
'datetime': lambda val: val or False,
}
class Property(models.Model):
_name = 'ir.property'
class PropertyInherit(models.Model):
_inherit = 'ir.property'
_description = 'Company Property'
@api.model