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:
@ -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,
|
||||
});
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user