knowledge/document_knowledge/models/res_config.py
Leonardo Donelli a94f7e07e8 Port to v10
2024-10-29 17:33:23 +07:00

18 lines
478 B
Python

# -*- coding: utf-8 -*-
# Copyright 2016 MONK Software
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
from odoo import models, fields
class KnowledgeConfigSettings(models.TransientModel):
_name = 'knowledge.config.settings'
_inherit = 'res.config.settings'
module_document = fields.Boolean(
'Manage documents',
help='Document indexation, full text search of attachements.\n'
'- This installs the module document.'
)