1
0
mirror of https://github.com/bitwarden/server.git synced 2025-07-01 16:12:49 -05:00

updated user store to use user service for user update operation. added revision date updates to user service update method.

This commit is contained in:
Kyle Spearrin
2016-02-21 00:56:48 -05:00
parent f3e3474746
commit 5de7fde685
3 changed files with 6 additions and 5 deletions

View File

@ -70,6 +70,7 @@ namespace Bit.Core.Services
throw new ApplicationException("Use register method to create a new user.");
}
user.RevisionDate = DateTime.UtcNow;
await _userRepository.ReplaceAsync(user);
}