From e65eb15f2c3305e068dd5059ffee48cc16cf0460 Mon Sep 17 00:00:00 2001 From: David Christofas Date: Wed, 24 Aug 2022 11:04:18 +0200 Subject: [PATCH] add the settings path to the unprotected paths --- services/proxy/pkg/middleware/authentication.go | 1 + 1 file changed, 1 insertion(+) diff --git a/services/proxy/pkg/middleware/authentication.go b/services/proxy/pkg/middleware/authentication.go index 4f77f36b09..99dced8d68 100644 --- a/services/proxy/pkg/middleware/authentication.go +++ b/services/proxy/pkg/middleware/authentication.go @@ -30,6 +30,7 @@ var ( _unprotectedPaths = map[string]struct{}{ "/": {}, "/login": {}, + "/settings": {}, "/app/list": {}, "/config.json": {}, "/manifest.json": {},