[ADD] web_session_auto_close

This commit adds the web_session_auto_close module which purpose is
to is to automatically close the session when the last odoo tab is
closed or when the computer gets in idle mode.

The `timeout` occurs 15 seconds after the tab has been closed or
the computer got idle.
This commit is contained in:
Laurent Stukkens
2023-08-17 09:32:11 +02:00
parent ab916ebf6d
commit 85b83d199d
17 changed files with 738 additions and 0 deletions

View File

@@ -0,0 +1 @@
../../../../web_session_auto_close

View File

@@ -0,0 +1,6 @@
import setuptools
setuptools.setup(
setup_requires=['setuptools-odoo'],
odoo_addon=True,
)