(
self, organisation: Organisation, permission_key: str
)
| 49 | |
| 50 | @abstractmethod |
| 51 | def has_organisation_permission( |
| 52 | self, organisation: Organisation, permission_key: str |
| 53 | ) -> bool: |
| 54 | raise NotImplementedError() |
| 55 | |
| 56 | @abstractmethod |
| 57 | def get_permitted_projects(self, permission_key: str) -> QuerySet["Project"]: |
no outgoing calls