1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-13 14:53:33 +00:00

[AC-2330] Updated Cipher Collections Now Sets Readonly Properly (#8549)

Update putCipherCollection call to get new cipher with updated edit value
This commit is contained in:
Jason Ng
2024-04-12 15:41:05 -04:00
committed by GitHub
parent 44d59f0d8c
commit c701ad9cf2
3 changed files with 9 additions and 5 deletions

View File

@@ -220,7 +220,7 @@ export abstract class ApiService {
putMoveCiphers: (request: CipherBulkMoveRequest) => Promise<any>;
putShareCipher: (id: string, request: CipherShareRequest) => Promise<CipherResponse>;
putShareCiphers: (request: CipherBulkShareRequest) => Promise<any>;
putCipherCollections: (id: string, request: CipherCollectionsRequest) => Promise<any>;
putCipherCollections: (id: string, request: CipherCollectionsRequest) => Promise<CipherResponse>;
putCipherCollectionsAdmin: (id: string, request: CipherCollectionsRequest) => Promise<any>;
postPurgeCiphers: (request: SecretVerificationRequest, organizationId?: string) => Promise<any>;
putDeleteCipher: (id: string) => Promise<any>;