Returns the user that performed the cloud activity as scratchattach.user.User object
(self)
| 96 | return False |
| 97 | |
| 98 | def actor(self): |
| 99 | """ |
| 100 | Returns the user that performed the cloud activity as scratchattach.user.User object |
| 101 | """ |
| 102 | if self.username is None: |
| 103 | return None |
| 104 | return self._make_linked_object("username", self.username, user.User, exceptions.UserNotFound) |
| 105 | |
| 106 | def project(self) -> Optional[project_module.Project]: |
| 107 | """ |
nothing calls this directly
no test coverage detected