1
0
mirror of https://github.com/bitwarden/server.git synced 2025-07-01 08:02:49 -05:00

[AC-432] Changed ProviderOrganization_ReadByOrganizationIds to only get count

This commit is contained in:
Rui Tome
2023-04-06 15:24:05 +01:00
parent 735775e002
commit 4daebe4f47
8 changed files with 36 additions and 21 deletions

View File

@ -53,7 +53,7 @@ BEGIN
END
GO
CREATE OR ALTER PROCEDURE [dbo].[ProviderOrganization_ReadByOrganizationIds]
CREATE OR ALTER PROCEDURE [dbo].[ProviderOrganization_ReadCountByOrganizationIds]
@Ids AS [dbo].[GuidIdArray] READONLY
AS
BEGIN
@ -65,7 +65,7 @@ BEGIN
END
SELECT
*
COUNT(1)
FROM
[dbo].[ProviderOrganizationView]
WHERE