Add description
This commit is contained in:
parent
df6d1e7662
commit
3a5fa443e1
|
|
@ -34,6 +34,7 @@ class KeychainAccount(models.Model):
|
|||
"""Manage all accounts of external systems in one place."""
|
||||
|
||||
_name = 'keychain.account'
|
||||
_description = 'Store accounts (password / data).'
|
||||
|
||||
name = fields.Char(required=True, help="Humain readable label")
|
||||
technical_name = fields.Char(
|
||||
|
|
|
|||
|
|
@ -7,6 +7,7 @@ from odoo.tools.config import config
|
|||
|
||||
class KeychainBackend(models.AbstractModel):
|
||||
_name = 'keychain.backend'
|
||||
_description = 'Helper for creating view.'
|
||||
_backend_name = None
|
||||
|
||||
name = fields.Char(required=True)
|
||||
|
|
|
|||
Loading…
Reference in New Issue