(
self,
permission: str,
project: "Project",
tag_ids: list[int] = None, # type: ignore[assignment]
)
| 31 | |
| 32 | @abstractmethod |
| 33 | def has_project_permission( |
| 34 | self, |
| 35 | permission: str, |
| 36 | project: "Project", |
| 37 | tag_ids: list[int] = None, # type: ignore[assignment] |
| 38 | ) -> bool: |
| 39 | raise NotImplementedError() |
| 40 | |
| 41 | @abstractmethod |
| 42 | def has_environment_permission( |
no outgoing calls
no test coverage detected