1
0
mirror of https://github.com/bitwarden/server synced 2026-01-08 03:23:20 +00:00

Fixed bug where providers weren't being checked corerctly in auto confirm handler.

This commit is contained in:
Jared McCannon
2025-12-03 11:18:17 -06:00
parent ded1c58c27
commit c626f14894
8 changed files with 400 additions and 322 deletions

View File

@@ -0,0 +1,13 @@
CREATE OR ALTER PROCEDURE [dbo].[ProviderUser_ReadyManyByManyUserIds]
@UserIds AS [dbo].[GuidIdArray] READONLY
AS
BEGIN
SET NOCOUNT ON
SELECT
[pu].*
FROM
[dbo].[ProviderUserView] AS [pu]
JOIN
@UserIds [u] ON [u].[Id] = [pu].[UserId]
END