social/mail_show_follower/models/res_company.py

10 lines
201 B
Python
Raw Normal View History

from odoo import fields, models
class ResCompany(models.Model):
_inherit = "res.company"
show_internal_users_cc = fields.Boolean(
string="Show Internal Users CC", default=True
)