mirror of
https://github.com/OCA/server-backend.git
synced 2025-02-18 09:52:42 +02:00
30 lines
783 B
Python
30 lines
783 B
Python
# Copyright 2019 ACSONE SA/NV
|
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
|
|
|
{
|
|
'name': 'Base User Role History',
|
|
'summary': """
|
|
This module allows to track the changes on users roles.""",
|
|
'version': '12.0.1.0.1',
|
|
'license': 'AGPL-3',
|
|
'author': 'ACSONE SA/NV, '
|
|
'Odoo Community Association (OCA)',
|
|
'website': 'https://github.com/OCA/server-backend',
|
|
'depends': [
|
|
# Odoo
|
|
'mail',
|
|
# OCA
|
|
'base_user_role',
|
|
'base_suspend_security',
|
|
],
|
|
'data': [
|
|
'security/base_user_role_line_history.xml',
|
|
'views/base_user_role_line_history.xml',
|
|
'views/res_users.xml',
|
|
],
|
|
'development_status': 'Beta',
|
|
'maintainers': [
|
|
'ThomasBinsfeld'
|
|
],
|
|
}
|