Friday, September 12, 2025
3 changes · master
Features or functions removed from Odoo
The messaging app now uses a guest's existing name directly instead of keeping a separate display name field. This removes redundant internal data handling while keeping the visible guest name unchanged for users.
Original PR description
This commit removes the `displayName` field from the JS model of `mail.guest`. It's not needed as we always display the guest `name` field. task-4965928
This change removes an unused internal function from the web action service that was added recently but not needed. It helps keep the system simpler and easier to maintain, with no expected impact on day-to-day users.
Original PR description
A function has been recently added to the action service API, but it turns out that it wasn't useful (no even used by the PR adding it). This commit removes it. Description of the issue/feature this PR addresses: Current behavior before PR: Desired behavior after PR is merged: --- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr Forward-Port-Of: odoo/odoo#226596
The mail app no longer keeps a separate display name for guest users. This simplifies the underlying data because guest names are already shown using the standard name field, with no expected change for users.
Original PR description
This commit removes the `displayName` field from the JS model of `mail.guest`. It's not needed as we always display the guest `name` field. task-4965928 Forward-Port-Of: odoo/odoo#226605