diff options
| -rw-r--r-- | indoteknik_custom/models/__init__.py | 1 | ||||
| -rw-r--r-- | indoteknik_custom/models/res_users.py | 7 |
2 files changed, 8 insertions, 0 deletions
diff --git a/indoteknik_custom/models/__init__.py b/indoteknik_custom/models/__init__.py index afef17eb..6573205e 100644 --- a/indoteknik_custom/models/__init__.py +++ b/indoteknik_custom/models/__init__.py @@ -9,3 +9,4 @@ from . import x_partner_purchase_order from . import x_product_tags from . import stock_vendor from . import crm_lead +from . import res_users diff --git a/indoteknik_custom/models/res_users.py b/indoteknik_custom/models/res_users.py new file mode 100644 index 00000000..16820952 --- /dev/null +++ b/indoteknik_custom/models/res_users.py @@ -0,0 +1,7 @@ +from odoo import models, fields + + +class ResUsers(models.Model): + _inherit = 'res.users' + + reset_password_token = fields.Char(string="Reset Password Token") |
