(self, organisation: typing.Union["Organisation", int])
| 252 | self.add_organisation(organisation, role=OrganisationRole(invite.role)) |
| 253 | |
| 254 | def is_organisation_admin(self, organisation: typing.Union["Organisation", int]): # type: ignore[no-untyped-def] |
| 255 | return is_user_organisation_admin(self, organisation) |
| 256 | |
| 257 | def get_admin_organisations(self): # type: ignore[no-untyped-def] |
| 258 | return Organisation.objects.filter( |