Files
web/web_session_auto_close/views/assets_backend.xml
Laurent Stukkens 85b83d199d [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.
2023-11-06 10:18:34 +01:00

20 lines
569 B
XML

<?xml version="1.0" encoding="utf-8" ?>
<odoo>
<template
id="assets_backend"
inherit_id="web.assets_backend"
name="Web Session Auto Close Assets Backend"
>
<xpath expr="." position="inside">
<script
type="text/javascript"
src="/web_session_auto_close/static/src/js/bus_service.js"
/>
<script
type="text/javascript"
src="/web_session_auto_close/static/src/js/web_client.js"
/>
</xpath>
</template>
</odoo>