Kill session on logout
authorSteven Barth <steven@midlink.org>
Sun, 14 Dec 2008 21:43:05 +0000 (21:43 +0000)
committerSteven Barth <steven@midlink.org>
Sun, 14 Dec 2008 21:43:05 +0000 (21:43 +0000)
modules/admin-full/luasrc/controller/admin/index.lua
modules/admin-mini/luasrc/controller/mini/index.lua

index 071dd59..c0322d3 100644 (file)
@@ -49,6 +49,12 @@ function index()
 end
 
 function action_logout()
 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
        luci.http.header("Set-Cookie", "sysauth=; path=/")
        luci.http.redirect(luci.dispatcher.build_url())
 end
\ No newline at end of file
index b538310..dad6ccf 100644 (file)
@@ -40,6 +40,12 @@ function index()
 end
 
 function action_logout()
 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
        luci.http.header("Set-Cookie", "sysauth=; path=/")
        luci.http.redirect(luci.dispatcher.build_url())
 end
\ No newline at end of file