mirror of
https://github.com/bitwarden/server
synced 2025-12-17 08:43:27 +00:00
Refactor naming: Sites => Logins
This commit is contained in:
@@ -62,7 +62,7 @@ namespace Bit.Api.Controllers
|
||||
public async Task PostImport([FromBody]ImportRequestModel model)
|
||||
{
|
||||
var folderCiphers = model.Folders.Select(f => f.ToCipher(_userManager.GetUserId(User))).ToList();
|
||||
var otherCiphers = model.Sites.Select(s => s.ToCipher(_userManager.GetUserId(User))).ToList();
|
||||
var otherCiphers = model.Logins.Select(s => s.ToCipher(_userManager.GetUserId(User))).ToList();
|
||||
|
||||
await _cipherService.ImportCiphersAsync(
|
||||
folderCiphers,
|
||||
|
||||
Reference in New Issue
Block a user