12 lines
305 B
Python
12 lines
305 B
Python
|
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||
|
|
||
|
from odoo import models
|
||
|
|
||
|
|
||
|
class ResUsersSettings(models.Model):
|
||
|
_name = "res.users.settings"
|
||
|
_inherit = ["res.users.settings", "bus.listener.mixin"]
|
||
|
|
||
|
def _bus_channel(self):
|
||
|
return self.user_id._bus_channel()
|