diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2015-01-15 10:55:53 +0100 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2015-01-15 11:09:05 +0100 |
commit | 199c8cbc4c32506ecfe89850615b88a3f0276dd3 (patch) | |
tree | 8f42aed92f92eba67898c0ce6bd5464a04986967 /modules/luci-mod-admin-mini | |
parent | eb8560061ab2aed5c0f2ce2ca9fa0fe28fa89af4 (diff) |
luci-base: switch to ubus sessions
Remove luci.sauth session storage implementation and offload the session
management to the rpcd ubus backend. Also depend on rpcd due to this.
Diffstat (limited to 'modules/luci-mod-admin-mini')
-rw-r--r-- | modules/luci-mod-admin-mini/luasrc/controller/mini/index.lua | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/modules/luci-mod-admin-mini/luasrc/controller/mini/index.lua b/modules/luci-mod-admin-mini/luasrc/controller/mini/index.lua index 9d6a38ed4..6800f9bfd 100644 --- a/modules/luci-mod-admin-mini/luasrc/controller/mini/index.lua +++ b/modules/luci-mod-admin-mini/luasrc/controller/mini/index.lua @@ -37,9 +37,11 @@ end function action_logout() local dsp = require "luci.dispatcher" - local sauth = require "luci.sauth" + local utl = require "luci.util" if dsp.context.authsession then - sauth.kill(dsp.context.authsession) + utl.ubus("session", "destroy", { + ubus_rpc_session = dsp.context.authsession + }) dsp.context.urltoken.stok = nil end |