(self)
| 181 | |
| 182 | @property |
| 183 | def origin_req_host(self) -> str: |
| 184 | return cast("str", urlparse_cached(self.request).hostname) |
| 185 | |
| 186 | def has_header(self, name: str) -> bool: |
| 187 | return name in self.request.headers |
nothing calls this directly
no test coverage detected