Get branch hostname
(self, branch: str)
| 589 | ) |
| 590 | |
| 591 | def get_branch_hostname(self, branch: str) -> str: |
| 592 | """Get branch hostname""" |
| 593 | settings = get_settings() |
| 594 | return f"{self.slug}-branch-{branch}.{settings.deploy_domain}" |
| 595 | |
| 596 | def get_branch_url(self, branch: str) -> str: |
| 597 | """Get branch URL""" |
no test coverage detected