mirror of
https://github.com/bringout/oca-server-auth.git
synced 2026-04-18 17:12:09 +02:00
16 lines
496 B
Python
16 lines
496 B
Python
# © 2021 Florian Kantelberg - initOS GmbH
|
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
|
|
|
from odoo import fields, models
|
|
|
|
|
|
class ResConfigSettings(models.TransientModel):
|
|
_inherit = "res.config.settings"
|
|
|
|
module_vault_share = fields.Boolean()
|
|
group_vault_export = fields.Boolean(
|
|
"Export Vaults", implied_group="vault.group_vault_export"
|
|
)
|
|
group_vault_import = fields.Boolean(
|
|
"Import Vaults", implied_group="vault.group_vault_import"
|
|
)
|