1
0
mirror of https://github.com/bitwarden/server.git synced 2025-07-03 17:12:49 -05:00

[EC-736] Update build to run SCIM tests and fix failing test (#2402)

* [EC-736] Revert change on OrganizationUserUserViewQuery

Revert a change that was causing the query to not return results when the OrganizationUser did not have a corresponding row on the Users table

* [EC-736] Update build to run bitwarden_license test projects
This commit is contained in:
Rui Tomé
2022-11-10 14:19:28 +00:00
committed by GitHub
parent 37ed4f43b2
commit 9ecf69d9ca
3 changed files with 39 additions and 2 deletions

View File

@ -28,7 +28,7 @@ public class OrganizationUserUserDetailsViewQuery : IQuery<OrganizationUserUserD
SsoExternalId = x.su.ExternalId,
Permissions = x.ou.Permissions,
ResetPasswordKey = x.ou.ResetPasswordKey,
UsesKeyConnector = x.u.UsesKeyConnector,
UsesKeyConnector = x.u != null && x.u.UsesKeyConnector,
});
}
}