61463fc530
- Any model inheriting from mail.thread will have a filter available to obtain records with errors in their messages trackings. - The messages can be marked as done to avoid false positives when the issues are solved.
15 lines
430 B
XML
15 lines
430 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<odoo>
|
|
|
|
<record model="ir.ui.view" id="view_message_form">
|
|
<field name="model">mail.message</field>
|
|
<field name="inherit_id" ref="mail.view_message_form"/>
|
|
<field name="arch" type="xml">
|
|
<field name="subtype_id" position="after">
|
|
<field name="mail_tracking_needs_action" />
|
|
</field>
|
|
</field>
|
|
</record>
|
|
|
|
</odoo>
|