13 lines
324 B
Python
13 lines
324 B
Python
# -*- coding: utf-8 -*-
|
|
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
|
|
|
from odoo import models, fields
|
|
|
|
class ResConfigSettings(models.TransientModel):
|
|
_inherit = 'res.config.settings'
|
|
|
|
apikey = fields.Char(
|
|
string="API Key",
|
|
config_parameter="chatgpt_blog.apikey"
|
|
)
|