mirror of
https://github.com/bringout/oca-technical.git
synced 2026-04-18 04:32:01 +02:00
13 lines
280 B
Python
13 lines
280 B
Python
# 2019 Vauxoo (<http://www.vauxoo.com/>)
|
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
|
|
|
from odoo import api, models
|
|
|
|
|
|
class IrAttachment(models.Model):
|
|
|
|
_inherit = "ir.attachment"
|
|
|
|
@api.model
|
|
def _index(self, *args, **kwargs):
|
|
return False
|