mirror of
https://github.com/bitwarden/server.git
synced 2025-04-05 21:18:13 -05:00
use withOrganizations sproc
This commit is contained in:
parent
165ee97d2f
commit
528a0732a6
@ -90,7 +90,8 @@ namespace Bit.Api.Controllers
|
||||
{
|
||||
var userId = _userService.GetProperUserId(User).Value;
|
||||
var hasOrgs = _currentContext.Organizations.Any();
|
||||
var ciphers = await _cipherRepository.GetManyByUserIdAsync(userId, hasOrgs);
|
||||
// TODO: Use hasOrgs proper for cipher listing here?
|
||||
var ciphers = await _cipherRepository.GetManyByUserIdAsync(userId, true || hasOrgs);
|
||||
Dictionary<Guid, IGrouping<Guid, CollectionCipher>> collectionCiphersGroupDict = null;
|
||||
if(hasOrgs)
|
||||
{
|
||||
|
@ -65,9 +65,7 @@ namespace Bit.Core.Repositories.SqlServer
|
||||
public async Task<ICollection<CipherDetails>> GetManyByUserIdAsync(Guid userId, bool withOrganizations = true)
|
||||
{
|
||||
string sprocName = null;
|
||||
// Always "with organizations" for now. Future TODO is to possibly move to another, simpler sproc when no
|
||||
// orgs are expected.
|
||||
if(true || withOrganizations)
|
||||
if(withOrganizations)
|
||||
{
|
||||
sprocName = $"[{Schema}].[CipherDetails_ReadByUserId]";
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user