mirror of
https://github.com/bringout/oca-ocb-core.git
synced 2026-04-21 06:52:03 +02:00
11 lines
290 B
Python
11 lines
290 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
|