You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
477 B
14 lines
477 B
from odoo.addons.bus.controllers.main import BusController
|
|
from odoo.http import request
|
|
|
|
|
|
class MailChatController(BusController):
|
|
# -----------------------------
|
|
# Extends BUS Controller Poll
|
|
# -----------------------------
|
|
|
|
def _poll(self, dbname, channels, last, options):
|
|
if request.session.uid:
|
|
channels.append((request.db, "mail_base.mail_sent"))
|
|
|
|
return super(MailChatController, self)._poll(dbname, channels, last, options)
|