(
self,
permission: str,
environment: "Environment",
tag_ids: list[int] = None, # type: ignore[assignment]
)
| 40 | |
| 41 | @abstractmethod |
| 42 | def has_environment_permission( |
| 43 | self, |
| 44 | permission: str, |
| 45 | environment: "Environment", |
| 46 | tag_ids: list[int] = None, # type: ignore[assignment] |
| 47 | ) -> bool: |
| 48 | raise NotImplementedError() |
| 49 | |
| 50 | @abstractmethod |
| 51 | def has_organisation_permission( |
no outgoing calls
no test coverage detected