Add description

This commit is contained in:
hparfr 2018-10-02 09:47:32 +02:00 committed by Florian da Costa
parent df6d1e7662
commit 3a5fa443e1
2 changed files with 2 additions and 0 deletions

View File

@ -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(

View File

@ -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)