13 lines
533 B
Python
13 lines
533 B
Python
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
|
|
|
from odoo.http import request, route
|
|
from odoo.addons.mail.controllers import discuss
|
|
|
|
|
|
class DiscussController(discuss.DiscussController):
|
|
@route()
|
|
def mail_message_post(self, thread_model, thread_id, post_data, **kwargs):
|
|
if post_data.get("canned_response_ids"):
|
|
request.update_context(canned_response_ids=post_data["canned_response_ids"])
|
|
return super().mail_message_post(thread_model, thread_id, post_data, **kwargs)
|