You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
# -*- coding: utf-8 -*- # (c) 2015 ACSONE SA/NV, Dhinesh D # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
from odoo import api, models, tools
DELAY_KEY = 'inactive_session_time_out_delay' IGNORED_PATH_KEY = 'inactive_session_time_out_ignored_url'
class IrConfigParameter(models.Model): _inherit = 'ir.config_parameter'
@api.model @tools.ormcache('self.env.cr.dbname') def _auth_timeout_get_parameter_delay(self): return int( self.env['ir.config_parameter'].sudo().get_param( DELAY_KEY, 7200, ) )
@api.model @tools.ormcache('self.env.cr.dbname') def _auth_timeout_get_parameter_ignored_urls(self): urls = self.env['ir.config_parameter'].sudo().get_param( IGNORED_PATH_KEY, '', ) return urls.split(',')
@api.multi def write(self, vals): res = super(IrConfigParameter, self).write(vals) self._auth_timeout_get_parameter_delay.clear_cache( self.filtered(lambda r: r.key == DELAY_KEY), ) self._auth_timeout_get_parameter_ignored_urls.clear_cache( self.filtered(lambda r: r.key == IGNORED_PATH_KEY), ) return res
|