[fix] addon pathing

This commit is contained in:
2026-04-11 22:45:02 -04:00
parent 044299e50c
commit 9642722619
213 changed files with 1 additions and 1 deletions

View File

@@ -0,0 +1 @@
from . import ir_http

View File

@@ -0,0 +1,20 @@
from odoo import models
class IrHttp(models.AbstractModel):
_inherit = 'ir.http'
#----------------------------------------------------------
# Functions
#----------------------------------------------------------
def session_info(self):
result = super().session_info()
result['pager_autoload_interval'] = int(
self.env['ir.config_parameter'].sudo().get_param(
'muk_web_refresh.pager_autoload_interval',
default=30000
)
)
return result