I’ve been trying to modifying the Odoo discussions with no success.
This is what I’m trying to achieve:
I add messages with the "New Message" button to an Odoo module (in class mro.order).
The messages are showing up in the Discussions module:

But I need the title to be like ‘MRO00049 – Foliemast gaat steeds in alarm’ instead of just MRO00049. So I need mro_order.name – mro_order.omschrijving in the title. How can I change this?
I've been looking for a few hours everywhere in the code of the MRO module and the mail module but don't know how to do it...
I already found the title is in /mail/static/src/xml/thread.xml:
<t t-if="message.model && (message.model != 'mail.channel') && options.display_document_link">
on <a t-att-href="message.url" t-att-data-oe-model="message.model" t-att-data-oe-id="message.res_id"><t t-esc="message.record_name"/></a>
</t>