code review: renaming, comments, extract common code

This commit is contained in:
Valere 2025-01-24 12:00:16 +01:00
parent 31ab66985e
commit 3f1543eb51
10 changed files with 90 additions and 69 deletions

View file

@ -209,7 +209,7 @@ internal class RustEncryptionService(
getUserIdentity(userId).pin()
}
override suspend fun withdrawVerificationRequirement(userId: UserId): Result<Unit> = runCatching {
override suspend fun withdrawVerification(userId: UserId): Result<Unit> = runCatching {
getUserIdentity(userId).withdrawVerification()
}