From be798b11c19708334efe2f153db186e8d35f16d1 Mon Sep 17 00:00:00 2001 From: Ruben Fiszel Date: Tue, 11 Nov 2025 21:48:03 +0000 Subject: [PATCH] more endpoints for public apps --- backend/windmill-api/src/public_app_layer.rs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/backend/windmill-api/src/public_app_layer.rs b/backend/windmill-api/src/public_app_layer.rs index df8b46cef2..a0feb2e0b6 100644 --- a/backend/windmill-api/src/public_app_layer.rs +++ b/backend/windmill-api/src/public_app_layer.rs @@ -63,12 +63,16 @@ fn is_public_route_whitelisted(path: &str) -> bool { "/api/auth/login", "/api/w/*/folders/listnames", "/api/w/*/resources/exists/*", + "/api/w/*/resources/type/get/*", + "/api/w/*/resources/type/listnames", "/api/oauth/login/*", "/api/oauth/connect/*", "/oauth/callback/*", "/user/login_callback/*", "/api/workspaces/users", "/api/users/whoami", + "/api/oauth/list_connects", + "/api/oauth/list_logins", "/public/*", "/a/*", ];