1
0
mirror of https://github.com/bitwarden/server synced 2025-12-23 19:53:40 +00:00

revert changes to CipherDetails_ReadByIdUserId.sql

This commit is contained in:
jaasen-livefront
2025-11-17 18:35:12 -08:00
parent 3ae4abb2b5
commit 9813cb19c8

View File

@@ -3,9 +3,9 @@
@UserId UNIQUEIDENTIFIER
AS
BEGIN
SET NOCOUNT ON;
SET NOCOUNT ON
SELECT
SELECT
[Id],
[UserId],
[OrganizationId],
@@ -21,9 +21,9 @@ BEGIN
[Key],
[OrganizationUseTotp],
[ArchivedDate],
MAX([Edit]) AS Edit,
MAX([ViewPassword]) AS ViewPassword,
MAX([Manage]) AS Manage
MAX ([Edit]) AS Edit,
MAX ([ViewPassword]) AS ViewPassword,
MAX ([Manage]) AS Manage
FROM
[dbo].[UserCipherDetails](@UserId)
WHERE