mirror of
https://github.com/OCA/knowledge.git
synced 2025-07-14 01:41:26 -06:00
18 lines
478 B
Python
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.'
|
|
)
|