(self)
| 536 | |
| 537 | @property |
| 538 | def storages(self) -> list["Storage"]: |
| 539 | return [ |
| 540 | link.storage |
| 541 | for link in self.storage_links |
| 542 | if link.storage and link.storage.type == "database" |
| 543 | ] |
| 544 | |
| 545 | async def get_domain_by_id(self, db: AsyncSession, domain_id: int) -> dict | None: |
| 546 | """Get domain by ID""" |
nothing calls this directly
no outgoing calls
no test coverage detected