mirror of
https://github.com/bringout/oca-server-auth.git
synced 2026-04-19 07:32:05 +02:00
17 lines
417 B
Python
17 lines
417 B
Python
# © 2021 Florian Kantelberg - initOS GmbH
|
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
|
|
|
import logging
|
|
|
|
from odoo import _, fields, models
|
|
|
|
_logger = logging.getLogger(__name__)
|
|
|
|
|
|
class VaultField(models.Model):
|
|
_name = "vault.field"
|
|
_description = _("Field of a vault")
|
|
_order = "name"
|
|
_inherit = ["vault.abstract.field", "vault.abstract"]
|
|
|
|
value = fields.Char(required=True)
|