goblin2986
goblin2986

Reputation: 1009

Openerp Browser session logout

I am using openerp web and server 5.15. Is there an way to kill the session of user when he/she closed the browser window?

If not, then is there any Javascript way then I can implement the same functionality?

Upvotes: 0

Views: 790

Answers (1)

César
César

Reputation: 10119

I guess this has to do more with CherryPy (the Web Framework used in OpenERP) than with OpenERP itself. Try looking at this lines in openerp-web.cfg:

tools.sessions.on = True
tools.sessions.persistent = False

Upvotes: 1

Related Questions