| Auto-Submit | +1 |
Hi Jérôme,
I’d appreciate your opinion before looking for an owner of everything
- (NSString*)name;Those properties are renamed because `name` may be set to the email value, which was misleading
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
| Code-Review | +1 |
// `account_name` may be empty if the name has not yet been loaded.I think it would be more relevant to have a comment:
`If `account_name` is empty, this method does nothing.`
// IOS. `account_name` may be empty if the name has not been loaded.Same here.
- (NSString*)name;Those properties are renamed because `name` may be set to the email value, which was misleading
Acknowledged
// `name` may be nil, `email` may not be nil.From a non english native speaker, I would have a preference with `must not be be nil`.
NSString* UserGivenName(id<SystemIdentity> identity) {I would rename this `UserGivenNameFullNameOrEmail()`. That would be an easy way for the caller to use it as the given name, and the show the email next to it.
NSString* UserFullName(id<SystemIdentity> identity) {`UserFullNameOrEmail()`
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |