mirror of
https://github.com/bitwarden/server.git
synced 2025-04-05 13:08:17 -05:00
If no ciphers yet, just save user when changing password/email
This commit is contained in:
parent
3521646489
commit
c954683133
1
.gitignore
vendored
1
.gitignore
vendored
@ -198,3 +198,4 @@ FakesAssemblies/
|
|||||||
|
|
||||||
# Other
|
# Other
|
||||||
project.lock.json
|
project.lock.json
|
||||||
|
*.jfm
|
||||||
|
@ -142,7 +142,16 @@ namespace Bit.Core.Services
|
|||||||
user.Email = newEmail;
|
user.Email = newEmail;
|
||||||
user.EmailVerified = true;
|
user.EmailVerified = true;
|
||||||
user.RevisionDate = DateTime.UtcNow;
|
user.RevisionDate = DateTime.UtcNow;
|
||||||
await _cipherRepository.UpdateUserEmailPasswordAndCiphersAsync(user, ciphers);
|
|
||||||
|
if(ciphers.Any())
|
||||||
|
{
|
||||||
|
await _cipherRepository.UpdateUserEmailPasswordAndCiphersAsync(user, ciphers);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
await _userRepository.ReplaceAsync(user);
|
||||||
|
}
|
||||||
|
|
||||||
return IdentityResult.Success;
|
return IdentityResult.Success;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -167,7 +176,15 @@ namespace Bit.Core.Services
|
|||||||
}
|
}
|
||||||
|
|
||||||
user.RevisionDate = DateTime.UtcNow;
|
user.RevisionDate = DateTime.UtcNow;
|
||||||
await _cipherRepository.UpdateUserEmailPasswordAndCiphersAsync(user, ciphers);
|
if(ciphers.Any())
|
||||||
|
{
|
||||||
|
await _cipherRepository.UpdateUserEmailPasswordAndCiphersAsync(user, ciphers);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
await _userRepository.ReplaceAsync(user);
|
||||||
|
}
|
||||||
|
|
||||||
return IdentityResult.Success;
|
return IdentityResult.Success;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user