mirror of
https://github.com/OCA/server-backend.git
synced 2025-02-18 09:52:42 +02:00
[PORT] Port base_suspend_security to 9.0
This commit is contained in:
committed by
Frédéric Garbely
parent
e91239e023
commit
cba388082e
@@ -30,7 +30,7 @@
|
|||||||
"test": [
|
"test": [
|
||||||
],
|
],
|
||||||
"auto_install": False,
|
"auto_install": False,
|
||||||
'installable': False,
|
'installable': True,
|
||||||
"application": False,
|
"application": False,
|
||||||
"external_dependencies": {
|
"external_dependencies": {
|
||||||
'python': [],
|
'python': [],
|
||||||
|
|||||||
@@ -24,7 +24,8 @@ from ..base_suspend_security import BaseSuspendSecurityUid
|
|||||||
class IrModelAccess(models.Model):
|
class IrModelAccess(models.Model):
|
||||||
_inherit = 'ir.model.access'
|
_inherit = 'ir.model.access'
|
||||||
|
|
||||||
@tools.ormcache_context(accepted_keys=('lang'))
|
@tools.ormcache_context('uid', 'model', 'mode', 'raise_exception',
|
||||||
|
keys=('lang',))
|
||||||
def check(self, cr, uid, model, mode='read', raise_exception=True,
|
def check(self, cr, uid, model, mode='read', raise_exception=True,
|
||||||
context=None):
|
context=None):
|
||||||
if isinstance(uid, BaseSuspendSecurityUid):
|
if isinstance(uid, BaseSuspendSecurityUid):
|
||||||
|
|||||||
Reference in New Issue
Block a user