flectra/addons/im_livechat/models/ir_autovacuum.py

13 lines
471 B
Python
Raw Normal View History

# -*- coding: utf-8 -*-
2018-01-16 11:34:37 +01:00
# Part of Odoo, Flectra. See LICENSE file for full copyright and licensing details.
from flectra import api, models
class AutoVacuum(models.AbstractModel):
_inherit = 'ir.autovacuum'
@api.model
def power_on(self, *args, **kwargs):
self.env['mail.channel'].remove_empty_livechat_sessions()
self.env['mail.channel.partner'].unpin_old_livechat_sessions()
return super(AutoVacuum, self).power_on(*args, **kwargs)