forked from OCA/server-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
__manifest__.py
26 lines (26 loc) · 1.06 KB
/
__manifest__.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# -*- encoding: utf-8 -*-
##############################################################################
#
# Author Nicolas Bessi. Copyright Camptocamp SA
##############################################################################
{'name': 'Security protector',
'version': '0.1',
'category': 'Tools',
'description': """
Prevent security to be changed when module is updated
This module overwrite ir model acces write delete function.
Only acces edited trough the UI or with manual_security_override in context set to True will be altered.
When you try to delete a acces write it simply set all perms to false
you can deactivate this behavior in ir.config_parameter by chanching the protect_security? key to 0
""",
'author': "Camptocamp,Odoo Community Association (OCA)",
'website': 'http://openerp.camptocamp.com',
'license': 'AGPL-3',
'depends': ['base'],
'init_xml': ['data.xml'],
'update_xml': ['security_view.xml'],
'demo_xml': [],
'installable': False,
'auto_install': False,
}
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: