1
0
mirror of https://github.com/bitwarden/server synced 2025-12-20 02:03:46 +00:00

implement claude suggestions

This commit is contained in:
jaasen-livefront
2025-12-03 15:41:56 -08:00
parent c0a7a1171a
commit e0daeb3518
6 changed files with 38 additions and 8 deletions

View File

@@ -197,7 +197,7 @@ BEGIN
SET
[Archives] = JSON_MODIFY(
COALESCE([Archives], N'{}'),
'$."' + CONVERT(NVARCHAR(36), @UserId) + '"',
CONCAT('$."', CONVERT(NVARCHAR(36), @UserId), '"'),
CONVERT(NVARCHAR(30), @UtcNow, 127)
),
[RevisionDate] = @UtcNow
@@ -248,7 +248,7 @@ BEGIN
SET
[Archives] = JSON_MODIFY(
COALESCE([Archives], N'{}'),
'$."' + CONVERT(NVARCHAR(36), @UserId) + '"',
CONCAT('$."', CONVERT(NVARCHAR(36), @UserId), '"'),
NULL
),
[RevisionDate] = @UtcNow