mirror of https://github.com/OCA/social.git
15 lines
416 B
Python
15 lines
416 B
Python
# Copyright 2020 Valentin Vinagre <valentin.vinagre@sygel.es>
|
|
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
|
|
|
|
from odoo import fields, models
|
|
|
|
|
|
class ResConfigSettings(models.TransientModel):
|
|
_inherit = 'res.config.settings'
|
|
|
|
show_internal_users_cc = fields.Boolean(
|
|
string='Show Internal Users CC',
|
|
related='company_id.show_internal_users_cc',
|
|
readonly=False
|
|
)
|