forked from Mapan/odoo17e
10 lines
293 B
Python
10 lines
293 B
Python
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
|
|
|
from odoo import fields, models
|
|
|
|
|
|
class ResConfigSettings(models.TransientModel):
|
|
_inherit = "res.config.settings"
|
|
|
|
wsServer = fields.Char(default="wss://edge.sip.onsip.com", config_parameter="voip.wsServer")
|