odex25_standard/odex25_base/chatgpt_bot/models/res_users.py

8 lines
185 B
Python

from odoo import api, fields, models, _
class ResUsers(models.Model):
_inherit = 'res.users'
odoobot_state = fields.Selection(selection_add=[('chatgpt', 'ChatGPT')])