(self, organisation)
| 283 | return user_organisation.role |
| 284 | |
| 285 | def get_organisation_join_date(self, organisation): # type: ignore[no-untyped-def] |
| 286 | user_organisation = self.get_user_organisation(organisation) |
| 287 | if user_organisation: |
| 288 | return user_organisation.date_joined |
| 289 | |
| 290 | def get_user_organisation( # type: ignore[return] |
| 291 | self, organisation: typing.Union["Organisation", int] |
no test coverage detected