diff --git a/server/index.ts b/server/index.ts index b12741d..66d401c 100644 --- a/server/index.ts +++ b/server/index.ts @@ -2812,8 +2812,8 @@ for (const mod of getAllModules()) { || pathname.includes("/rcart/pay/") || pathname.includes("/rwallet/api/") || pathname.includes("/rdesign/api/") - || (c.req.method === "GET" && pathname.includes("/rvote/api/")) - || (c.req.method === "POST" && pathname.endsWith("/rtasks/api/clickup/webhook")); + || pathname.includes("/rtasks/api/") + || (c.req.method === "GET" && pathname.includes("/rvote/api/")); if (!isHtmlRequest && !isPublicEndpoint && (vis === "private" || vis === "permissioned")) { const token = extractToken(c.req.raw.headers);