social/mail_show_follower/models/res_company.py
eLBati 87329aebb7 IMP mail_show_follower metadata and style
Display CC according to notification_type
2022-03-11 12:10:35 +01:00

11 lines
209 B
Python

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