Skip to content

Commit

Permalink
Added sudo() before reading ir_model.name fields to fix access error …
Browse files Browse the repository at this point in the history
…for users without admin rights when opening contact form views.
  • Loading branch information
BT-pgaiser committed Jun 29, 2023
1 parent c71db28 commit 600000d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion base_comment_template/models/base_comment_template.py
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ def name_get(self):
item.name, dict(self._fields["position"].selection).get(item.position)
)
if self.env.context.get("comment_template_model_display"):
name += " (%s)" % ", ".join(item.model_ids.mapped("name"))
name += " (%s)" % ", ".join(item.sudo().model_ids.mapped("name"))
res.append((item.id, name))
return res

Expand Down

0 comments on commit 600000d

Please sign in to comment.