mirror of
https://github.com/bitwarden/server.git
synced 2025-04-06 05:28:15 -05:00
pass org id to can use events check
This commit is contained in:
parent
e9116f8c44
commit
67ec4603a4
@ -64,7 +64,8 @@ namespace Bit.Core.Services
|
|||||||
{
|
{
|
||||||
var orgs = await _organizationUserRepository.GetManyByUserAsync(userId);
|
var orgs = await _organizationUserRepository.GetManyByUserAsync(userId);
|
||||||
orgEvents = orgs
|
orgEvents = orgs
|
||||||
.Where(o => o.Status == OrganizationUserStatusType.Confirmed && CanUseEvents(orgAbilities, o.Id))
|
.Where(o => o.Status == OrganizationUserStatusType.Confirmed &&
|
||||||
|
CanUseEvents(orgAbilities, o.OrganizationId))
|
||||||
.Select(o => new EventMessage(_currentContext)
|
.Select(o => new EventMessage(_currentContext)
|
||||||
{
|
{
|
||||||
OrganizationId = o.OrganizationId,
|
OrganizationId = o.OrganizationId,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user