mirror of
https://github.com/bitwarden/server.git
synced 2024-12-01 13:43:23 +01:00
1b75e35c31
- Revoking users when enabling single org and 2fa policies. - Updated emails sent when users are revoked via 2FA or Single Organization policy enablement Co-authored-by: Matt Bishop <mbishop@bitwarden.com> Co-authored-by: Rui Tomé <108268980+r-tome@users.noreply.github.com>
29 lines
761 B
Transact-SQL
29 lines
761 B
Transact-SQL
CREATE PROCEDURE [dbo].[OrganizationUser_SetStatusForUsersById]
|
|
@OrganizationUserIds AS NVARCHAR(MAX),
|
|
@Status SMALLINT
|
|
AS
|
|
BEGIN
|
|
SET NOCOUNT ON
|
|
|
|
-- Declare a table variable to hold the parsed JSON data
|
|
DECLARE @ParsedIds TABLE (Id UNIQUEIDENTIFIER);
|
|
|
|
-- Parse the JSON input into the table variable
|
|
INSERT INTO @ParsedIds (Id)
|
|
SELECT value
|
|
FROM OPENJSON(@OrganizationUserIds);
|
|
|
|
-- Check if the input table is empty
|
|
IF (SELECT COUNT(1) FROM @ParsedIds) < 1
|
|
BEGIN
|
|
RETURN(-1);
|
|
END
|
|
|
|
UPDATE
|
|
[dbo].[OrganizationUser]
|
|
SET [Status] = @Status
|
|
WHERE [Id] IN (SELECT Id from @ParsedIds)
|
|
|
|
EXEC [dbo].[User_BumpAccountRevisionDateByOrganizationUserIds] @OrganizationUserIds
|
|
END
|