mirror of
https://github.com/bringout/oca-ocb-security.git
synced 2026-04-20 01:12:06 +02:00
21 lines
587 B
Python
21 lines
587 B
Python
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
|
|
|
{
|
|
'name': 'Authentication via LDAP',
|
|
'depends': ['base', 'base_setup'],
|
|
#'description': < auto-loaded from README file
|
|
'category': 'Hidden/Tools',
|
|
'data': [
|
|
'views/ldap_installer_views.xml',
|
|
'security/ir.model.access.csv',
|
|
'views/res_config_settings_views.xml',
|
|
],
|
|
'external_dependencies': {
|
|
'python': ['python-ldap'],
|
|
'apt': {
|
|
'python-ldap': 'python3-ldap',
|
|
},
|
|
},
|
|
'author': 'Odoo S.A.',
|
|
'license': 'LGPL-3',
|
|
}
|