1
0
mirror of https://github.com/bitwarden/server synced 2025-12-15 15:53:59 +00:00

Added bump account revision date to sproc (#6640)

This commit is contained in:
SmithThe4th
2025-11-24 17:57:06 -05:00
committed by GitHub
parent 931f0c65af
commit 9131427622
2 changed files with 45 additions and 0 deletions

View File

@@ -30,4 +30,10 @@ BEGIN
DECLARE @UpdateCollectionsSuccess INT
EXEC @UpdateCollectionsSuccess = [dbo].[Cipher_UpdateCollections] @Id, @UserId, @OrganizationId, @CollectionIds
-- Bump the account revision date AFTER collections are assigned.
IF @UpdateCollectionsSuccess = 0
BEGIN
EXEC [dbo].[User_BumpAccountRevisionDateByCipherId] @Id, @OrganizationId
END
END