forked from Mapan/odoo17e
10 lines
246 B
Python
10 lines
246 B
Python
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
|
|
|
from odoo import fields, models
|
|
|
|
|
|
class ResUsersSettings(models.Model):
|
|
_inherit = "res.users.settings"
|
|
|
|
onsip_auth_username = fields.Char("OnSIP Auth Username")
|