From 43538c2de9cff1faa933d2a02abb848629a8b3a9 Mon Sep 17 00:00:00 2001 From: Bernd Schoolmann Date: Mon, 19 May 2025 12:11:11 +0200 Subject: [PATCH] Add cleanup comment --- .../key-management/key-rotation/request/account-keys.request.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/apps/web/src/app/key-management/key-rotation/request/account-keys.request.ts b/apps/web/src/app/key-management/key-rotation/request/account-keys.request.ts index a97197c80c1..3f53f20419c 100644 --- a/apps/web/src/app/key-management/key-rotation/request/account-keys.request.ts +++ b/apps/web/src/app/key-management/key-rotation/request/account-keys.request.ts @@ -5,6 +5,8 @@ import { SigningKey, SigningKeyType, VerifyingKey } from "@bitwarden/key-managem export class AccountKeysRequest { userKeyEncryptedAccountPrivateKey: string; accountPublicKey: string; + + // Cleanup: These should be non-optional after the featureflag is rolled out, and users MUST upgrade https://bitwarden.atlassian.net/browse/PM-21768 signedPublicKeyOwnershipClaim: string | null; userKeyEncryptedSigningKey: string | null;