(pathname: string)
| 92 | /^\/api\/oauth\/client-id-metadata\/[^/]+\.json$/.test(pathname); |
| 93 | |
| 94 | export const isUnauthenticatedOAuthPath = (pathname: string): boolean => |
| 95 | isUnauthenticatedOAuthCallbackPath(pathname) || |
| 96 | isUnauthenticatedOAuthClientMetadataPath(pathname); |
no test coverage detected