mirror of
https://github.com/bringout/oca-ocb-core.git
synced 2026-04-21 04:52:00 +02:00
11 lines
277 B
Python
11 lines
277 B
Python
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
|
|
|
from odoo import models
|
|
|
|
|
|
class IrAttachment(models.Model):
|
|
_name = 'ir.attachment'
|
|
_inherit = ["ir.attachment", "bus.listener.mixin"]
|
|
|
|
def _bus_channel(self):
|
|
return self.env.user
|