mirror of
https://github.com/YunoHost/SSOwat.git
synced 2024-09-03 20:06:27 +02:00
[mod] Redirect after logout if r
URI argument exists
This commit is contained in:
parent
669feba0e4
commit
11d0e0689a
1 changed files with 6 additions and 2 deletions
|
@ -889,8 +889,12 @@ function logout()
|
||||||
flash("info", t("logged_out"))
|
flash("info", t("logged_out"))
|
||||||
end
|
end
|
||||||
|
|
||||||
-- Redirect to portal anyway
|
-- Redirect with the `r` URI argument if it exists or redirect to portal
|
||||||
return redirect(conf.portal_url)
|
if args.r then
|
||||||
|
return redirect(ngx.decode_base64(args.r))
|
||||||
|
else
|
||||||
|
return redirect(conf.portal_url)
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue