storage_backend/storage_thumbnail/models/storage_file.py

14 lines
399 B
Python
Raw Normal View History

2024-11-08 03:21:56 +07:00
# Copyright 2017 Akretion (http://www.akretion.com).
# @author Sébastien BEAU <sebastien.beau@akretion.com>
# License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl).
from odoo import fields, models
class StorageFile(models.Model):
_inherit = "storage.file"
file_type = fields.Selection(
selection_add=[("thumbnail", "Thumbnail")], ondelete={"thumbnail": "set null"}
)