1
0
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:
Kyle Spearrin 2017-12-20 22:23:05 -05:00
parent e9116f8c44
commit 67ec4603a4

View File

@ -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,