mirror of
https://github.com/OCA/web.git
synced 2025-02-22 13:21:25 +02:00
[MIG] web_disable_group_export: Migration to 11.0
This commit is contained in:
18
web_disable_export_group/models/ir_http.py
Normal file
18
web_disable_export_group/models/ir_http.py
Normal file
@@ -0,0 +1,18 @@
|
||||
# Copyright 2018 Tecnativa - David Vidal
|
||||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
|
||||
|
||||
from odoo import models
|
||||
from odoo.http import request
|
||||
|
||||
|
||||
class Http(models.AbstractModel):
|
||||
_inherit = 'ir.http'
|
||||
|
||||
def session_info(self):
|
||||
res = super(Http, self).session_info()
|
||||
user = request.env.user
|
||||
res.update({
|
||||
'group_export_data': user and user.has_group(
|
||||
'web_disable_export_group.group_export_data'),
|
||||
})
|
||||
return res
|
||||
Reference in New Issue
Block a user