Skip to content

Commit

Permalink
[FIX] Publish customer messages on website
Browse files Browse the repository at this point in the history
  • Loading branch information
valentincastravete committed Jul 3, 2024
1 parent 4c8524c commit b330bda
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion mail_private_no_published/models/mail_message.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,12 +43,21 @@ def create(self, vals):
continue

partner_ids = rec.partner_ids.ids
user_ids = self.env['res.users'].search([
user_ids = self.env['res.users'].sudo().search([
('partner_id', 'in', partner_ids),
('active', 'in', [True, False]),
])
customer_users = user_ids.filtered(lambda user: user.has_group('base.group_portal'))
if customer_users or (partner_ids and not user_ids):
continue

author_id = rec.author_id
user = self.env['res.users'].sudo().search([
('partner_id', '=', author_id.id),
('active', 'in', [True, False]),
])
if not user or (user and not user.has_group('base.group_user')):
continue

rec.website_published = False
return res

0 comments on commit b330bda

Please sign in to comment.