mirror of
https://github.com/bringout/oca-server-auth.git
synced 2026-04-19 18:32:02 +02:00
Initial commit: OCA Server Auth packages (29 packages)
This commit is contained in:
commit
3ed80311c4
1325 changed files with 127292 additions and 0 deletions
|
|
@ -0,0 +1,22 @@
|
|||
# © 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 VaultInboxLog(models.Model):
|
||||
_name = "vault.inbox.log"
|
||||
_description = _("Vault inbox log")
|
||||
_order = "create_date DESC"
|
||||
|
||||
inbox_id = fields.Many2one(
|
||||
"vault.inbox",
|
||||
ondelete="cascade",
|
||||
readonly=True,
|
||||
required=True,
|
||||
)
|
||||
name = fields.Char(readonly=True)
|
||||
Loading…
Add table
Add a link
Reference in a new issue