Fix goto /portal-settings/payments/portal-payments from mail (cookie 3d-party submit issue)

This commit is contained in:
Alexey Safronov 2024-07-16 15:18:04 +04:00
parent 7bf4b77ec3
commit c2a3b46e12

View File

@ -104,7 +104,7 @@ server {
local accept_header = ngx.req.get_headers()["Accept"] local accept_header = ngx.req.get_headers()["Accept"]
if ngx.req.get_method() == "GET" and accept_header ~= nil and string.find(accept_header, "html") and not ngx.re.match(ngx.var.request_uri, "ds-vpath|/api/") then if ngx.req.get_method() == "GET" and accept_header ~= nil and string.find(accept_header, "html") and not ngx.re.match(ngx.var.request_uri, "ds-vpath|/api/") then
if not ngx.re.match(ngx.var.request_uri, "login|sdk|filehandler|thirdparty|confirm|error|wizard|preparation-portal|unavailable|notifications|share=.|rooms/share(.*)key=.|/s/*|token=.|complete=.") then if not ngx.re.match(ngx.var.request_uri, "login|sdk|filehandler|thirdparty|confirm|error|wizard|preparation-portal|unavailable|notifications|payments|share=.|rooms/share(.*)key=.|/s/*|token=.|complete=.") then
if ngx.var.http_cookie == nil or not string.find(ngx.var.http_cookie, "asc_auth_key") then if ngx.var.http_cookie == nil or not string.find(ngx.var.http_cookie, "asc_auth_key") then
if ngx.var.request_uri == "/" then if ngx.var.request_uri == "/" then
return ngx.redirect("/login") return ngx.redirect("/login")