Rename UserEncryptionTrustLevelNormal to UserEncryptionTrustLevelNotVerified

This commit is contained in:
manuroe
2020-04-23 15:25:43 +02:00
parent 90fdb730cb
commit 835bd8e3dc
4 changed files with 10 additions and 10 deletions
@@ -20,10 +20,10 @@
UserEncryptionTrustLevel represents the user trust level in an encrypted room.
*/
typedef NS_ENUM(NSUInteger, UserEncryptionTrustLevel) {
UserEncryptionTrustLevelTrusted,
UserEncryptionTrustLevelWarning,
UserEncryptionTrustLevelNormal,
UserEncryptionTrustLevelTrusted, // The user is verified and they have trusted all their devices
UserEncryptionTrustLevelWarning, // The user is verified but they have not trusted all their devices
UserEncryptionTrustLevelNotVerified, // The user is not verified yet
UserEncryptionTrustLevelNoCrossSigning, // The user has not bootstrapped cross-signing yet
UserEncryptionTrustLevelNone,
UserEncryptionTrustLevelUnknown
UserEncryptionTrustLevelNone, // Crypto is not enabled. Should not happen
UserEncryptionTrustLevelUnknown // Computation in progress
};