mirror of
https://github.com/bringout/oca-technical.git
synced 2026-04-18 10:32:00 +02:00
10 lines
286 B
Python
10 lines
286 B
Python
from odoo import fields, models
|
|
|
|
|
|
class ResConfigSettings(models.TransientModel):
|
|
_inherit = "res.config.settings"
|
|
|
|
use_attachment_log = fields.Boolean(
|
|
config_parameter="attachment_logging.use_attachment_log",
|
|
help="Log attachment operations in chatter",
|
|
)
|