(request: Request)
| 111 | |
| 112 | /** The URL-pinned org selector for a request, or `null` to fall back to the session. */ |
| 113 | export const orgSelectorFromRequest = (request: Request): string | null => |
| 114 | request.headers.get(ORG_SELECTOR_HEADER); |
| 115 | |
| 116 | /** |
| 117 | * Resolve an org SELECTOR (URL slug or `org_…` id) to the organization the |
no test coverage detected