runbot/runbot_merge/models/__init__.py
Xavier Morel 61b92b2224 [IMP] runbot_merge: use native support for tracking messages
odoo/odoo@1341d52 added native support for tracking / overriding
tracking message so we don't need `change-message `anymore. The calls
had to be modified a bit as `_track_set_log_message` has to be invoked
on the records for which the tracking message is being set / updated.

Sadly the same for authors was only added in 16.3 *and* it's
unsuitable for our needs as we want to set the author without knowing
the scope of affected records (at least in the controller).

That way hopefully in 17.0 we can remove the `_message_compute_author`
override and things should work out. And maybe for 19.0 we can get the
ability to set a per-model (or even global) fallback author into
standard.
2024-08-09 10:10:01 +02:00

12 lines
284 B
Python

from . import mail_thread
from . import ir_actions
from . import res_partner
from . import project
from . import pull_requests
from . import batch
from . import project_freeze
from . import stagings_create
from . import staging_cancel
from . import events_sources
from . import crons