blob: 10bdad66c9fd3e1c3db32718883b0f1f707ede5e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
# -*- coding: utf-8 -*-
{
'name': "mail_bot_hr",
'summary': """Bridge module between hr and mailbot.""",
'description': """This module adds the OdooBot state and notifications in the user form modified by hr.""",
'website': "https://www.odoo.com/page/discuss",
'category': 'Productivity/Discuss',
'version': '1.0',
'depends': ['mail_bot', 'hr'],
'application': False,
'installable': True,
'auto_install': True,
'data': [
'views/res_users_views.xml',
],
'license': 'LGPL-3',
}
|