oca-ocb-security/odoo-bringout-oca-ocb-auth_oauth/auth_oauth/models/ir_config_parameter.py
Ernad Husremovic c0efcc53f5 19.0 vanilla
2026-03-09 09:32:28 +01:00

17 lines
544 B
Python

# -*- coding: utf-8 -*-
# Part of Odoo. See LICENSE file for full copyright and licensing details.
from odoo import models
class IrConfig_Parameter(models.Model):
_inherit = 'ir.config_parameter'
def init(self, force=False):
super().init(force=force)
if force:
oauth_oe = self.env.ref('auth_oauth.provider_openerp', raise_if_not_found=False)
if not oauth_oe:
return
dbuuid = self.sudo().get_param('database.uuid')
oauth_oe.write({'client_id': dbuuid})