mirror of
https://github.com/bringout/oca-ocb-core.git
synced 2026-04-19 08:32:05 +02:00
10 lines
304 B
Python
10 lines
304 B
Python
# -*- coding: utf-8 -*-
|
|
# 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'
|
|
|
|
web_app_name = fields.Char('Web App Name', config_parameter='web.web_app_name')
|