(pathname: string, method: string)
| 44 | (pathname === "/api/sentry-tunnel" && method === "POST") || pathname === "/api/oauth/callback"; |
| 45 | |
| 46 | export const servedByAppPlane = (pathname: string, method: string): boolean => |
| 47 | isApiPath(pathname) && !isStartOwnedApiPath(pathname, method); |
no test coverage detected