1
0
mirror of https://github.com/bitwarden/server.git synced 2025-07-02 16:42:50 -05:00

additional identity fields

This commit is contained in:
Kyle Spearrin
2017-10-09 11:23:20 -04:00
parent c7e7734dfc
commit b0fd99b218
4 changed files with 23 additions and 2 deletions

View File

@ -92,7 +92,7 @@ namespace Bit.Api.Controllers
IEnumerable<CipherDetails> ciphers;
if(type.HasValue)
{
ciphers = await _cipherRepository.GetManyByTypeAndUserIdAsync(Core.Enums.CipherType.Login, userId);
ciphers = await _cipherRepository.GetManyByTypeAndUserIdAsync(type.Value, userId);
}
else
{