Merge branch 'acl_on_basic_http_auth' into stable

wip_internal_redirect
opi 2017-05-12 22:49:12 +02:00
commit 737ebba474
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