1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-10 21:33:27 +00:00

add encrypted collection name to confirmUser request (#15156)

This commit is contained in:
Brandon Treston
2025-06-24 09:34:48 -04:00
committed by GitHub
parent 1c237a3753
commit 012ce25e49
4 changed files with 95 additions and 12 deletions

View File

@@ -1,5 +1,6 @@
// FIXME: Update this file to be type safe and remove this and next line
// @ts-strict-ignore
import { EncryptedString } from "@bitwarden/common/platform/models/domain/enc-string";
export class OrganizationUserConfirmRequest {
key: string;
key: EncryptedString | undefined;
defaultUserCollectionName: EncryptedString | undefined;
}