diff options
author | Steven Barth <steven@midlink.org> | 2008-12-14 21:43:05 +0000 |
---|---|---|
committer | Steven Barth <steven@midlink.org> | 2008-12-14 21:43:05 +0000 |
commit | 509a3daadbfcd9cbe550ff9c70a6f7af55dd2a0f (patch) | |
tree | 2dc52775caf52bad3dea97130f834030e2e80f48 /modules/admin-mini | |
parent | 8b978f79fca72d3d8d76a1fb147addea2d7e3ded (diff) |
Kill session on logout
Diffstat (limited to 'modules/admin-mini')
-rw-r--r-- | modules/admin-mini/luasrc/controller/mini/index.lua | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/modules/admin-mini/luasrc/controller/mini/index.lua b/modules/admin-mini/luasrc/controller/mini/index.lua index b538310aa..dad6ccfab 100644 --- a/modules/admin-mini/luasrc/controller/mini/index.lua +++ b/modules/admin-mini/luasrc/controller/mini/index.lua @@ -40,6 +40,12 @@ function index() end function action_logout() + local dsp = require "luci.dispatcher" + local sauth = require "luci.sauth" + if dsp.context.authsession then + sauth.kill(dsp.context.authsession) + end + luci.http.header("Set-Cookie", "sysauth=; path=/") luci.http.redirect(luci.dispatcher.build_url()) end
\ No newline at end of file |