14 lines
399 B
Python
14 lines
399 B
Python
# -*- coding: utf-8 -*-
|
|
# 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.thread']._garbage_collect_attachments()
|
|
return super(AutoVacuum, self).power_on(*args, **kwargs)
|