The request URL scheme, host, and root path. This is the root that the application is accessed from.
(self)
| 216 | |
| 217 | @cached_property |
| 218 | def root_url(self) -> str: |
| 219 | """The request URL scheme, host, and root path. This is the root |
| 220 | that the application is accessed from. |
| 221 | """ |
| 222 | return get_current_url(self.scheme, self.host, self.root_path) |
| 223 | |
| 224 | @cached_property |
| 225 | def host_url(self) -> str: |
nothing calls this directly
no test coverage detected