mirror of
https://github.com/bringout/oca-technical.git
synced 2026-04-18 13:52:05 +02:00
9 lines
239 B
Python
9 lines
239 B
Python
# Copyright 2024 Quartile
|
|
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
|
|
|
|
from odoo import models
|
|
|
|
|
|
class ResUsers(models.Model):
|
|
_name = "res.users"
|
|
_inherit = ["res.users", "mail.thread", "mail.activity.mixin"]
|