Sunday, June 29, 2025
3 changes · master
Miscellaneous changes
After the new design applied for the appointments pages, the propagation of the params was removed when clicking on the appointments cards. This was leading to issue to access the corresponding records when sharing a link to multiple appointments for which the user didn't have access like the unpublished ones. task-4893791 Forward-Port-Of: odoo/enterprise#88330
Original PR description
After the new design applied for the appointments pages, the propagation of the params was removed when clicking on the appointments cards. This was leading to issue to access the corresponding records when sharing a link to multiple appointments for which the user didn't have access like the unpublished ones. task-4893791 Forward-Port-Of: odoo/enterprise#88330
To reproduce: ============= - Activate and set up the SMS authentication for the Sign app. - Send a document for signature request with sms validation for a contact. - Go sign the document via the signature request link, sign and validate. - validate the recieved code and you will get the error: 'Error message: Sorry, an error has occurred. Please complete the document again.' Problem: ======== when constructing the signature request link, we retrieve the `accessToken` from `props`, wh
Original PR description
To reproduce: ============= - Activate and set up the SMS authentication for the Sign app. - Send a document for signature request with sms validation for a contact. - Go sign the document via the signature request link, sign and validate. - validate the recieved code and you will get the error: 'Error message: Sorry, an error has occurred. Please complete the document again.' Problem: ======== when constructing the signature request link, we retrieve the `accessToken` from `props`, while `accessToken` is not defined in the `props` of the `Document` component. Solution: ========= `accessToken` is defined directly in the `Document` component we can retreive it from `this.accessToken` opw-4813339 Forward-Port-Of: odoo/enterprise#88333
Lately we have seen that when trying to upload to Instagram throught the media link, the request is blocked by the robots.txt file. This is because Facebook crawler is trying to access our image url and it is not being able to get the image in their side. This commit tries to add this user-agent to the robots.txt for both when we have and do not have website installed, without altering any of the existent templates. This will silently add it for website, so the user will be able to modify the
Original PR description
Lately we have seen that when trying to upload to Instagram throught the media link, the request is blocked by the robots.txt file. This is because Facebook crawler is trying to access our image url and it is not being able to get the image in their side. This commit tries to add this user-agent to the robots.txt for both when we have and do not have website installed, without altering any of the existent templates. This will silently add it for website, so the user will be able to modify the robots.txt file if needed, but won't be able ot remove it. Community side: https://github.com/odoo/odoo/pull/211734 opw-4726371 Forward-Port-Of: odoo/enterprise#88667 Forward-Port-Of: odoo/enterprise#85990