[fix] check users ACL on http basic auth

wip_internal_redirect
Laurent Peuch 2017-05-12 15:42:29 +02:00 committed by opi
parent 442147bbbe
commit c019f9d208
1 changed files with 6 additions and 0 deletions

View File

@ -373,6 +373,12 @@ if auth_header then
user = hlp.authenticate(user, password)
if user then
hlp.set_headers(user)
-- If user has no access to this URL, redirect him to the portal
if not hlp.has_access(user) then
return hlp.redirect(conf.portal_url)
end
return hlp.pass()
end
end