diff --git a/internal/services/gateway/gateway.go b/internal/services/gateway/gateway.go index 09a960f..755ffb6 100644 --- a/internal/services/gateway/gateway.go +++ b/internal/services/gateway/gateway.go @@ -220,7 +220,7 @@ func (g *Gateway) Run(ctx context.Context) error { router.PathPrefix("/api/v1alpha").Handler(apirouter) - apirouter.Handle("/logs", logsHandler).Methods("GET") + apirouter.Handle("/logs", authOptionalHandler(logsHandler)).Methods("GET") //apirouter.Handle("/projectgroups", authForcedHandler(projectsHandler)).Methods("GET") apirouter.Handle("/projectgroups/{projectgroupref}", authForcedHandler(projectGroupHandler)).Methods("GET")