mirror of https://github.com/OCA/social.git
13 lines
370 B
Python
13 lines
370 B
Python
# Copyright 2024 Tecnativa - David Vidal
|
|
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html).
|
|
from odoo import models
|
|
|
|
|
|
class ResUsers(models.Model):
|
|
_inherit = "res.users"
|
|
|
|
def _init_messaging(self):
|
|
values = super()._init_messaging()
|
|
values["failed_counter"] = self.env["mail.message"].get_failed_count()
|
|
return values
|