mirror of
https://github.com/bitwarden/browser
synced 2025-12-22 11:13:46 +00:00
[PM-19532] - Add Fingerprint phrase to cli auth request (#14556)
* first pass at adding fingerprint phrase to auth requests * Moved call to getFingerprint into the service layer. Added a new method for getting auth requests. Updated tests. * Fixing the import * Renaming to WithFingerprint
This commit is contained in:
@@ -47,7 +47,10 @@ export class ListCommand {
|
||||
|
||||
try {
|
||||
const requests =
|
||||
await this.organizationAuthRequestService.listPendingRequests(organizationId);
|
||||
await this.organizationAuthRequestService.listPendingRequestsWithFingerprint(
|
||||
organizationId,
|
||||
);
|
||||
|
||||
const res = new ListResponse(requests.map((r) => new PendingAuthRequestResponse(r)));
|
||||
return Response.success(res);
|
||||
} catch (e) {
|
||||
|
||||
Reference in New Issue
Block a user