mirror of
https://github.com/mosip/inji-wallet.git
synced 2026-01-09 13:38:01 -05:00
[INJIMOB-3188]: Updating back to Auto Activation and keytype changes (#1899)
Signed-off-by: BalachandarG <balachandar.g@thoughtworks.com>
This commit is contained in:
@@ -272,7 +272,7 @@ fileignoreconfig:
|
||||
- filename: injitest/automation_trigger.sh
|
||||
checksum: f2f34839c99cb1b871dde17aed8508a071345d22738796e005ff709d2dab8644
|
||||
- filename: machines/Issuers/IssuersService.ts
|
||||
checksum: 79bb89fb0dd90f50a25b3cdecea0bda46b4fca46752db2254ac3b6ee552b207d
|
||||
checksum: 880c77c31b0ead3e4bce572cdd3d6313faa88d42d3a608ece9c6b445efc1bef6
|
||||
- filename: screens/Home/ViewVcModal.tsx
|
||||
checksum: cfb25d562185488432b76287c4ef93359c1c64d8e29f5755d4c0a726c1485442
|
||||
- filename: injitest/src/main/resources/TestData.json
|
||||
|
||||
@@ -454,7 +454,7 @@ export const IssuersMachine = model.createMachine(
|
||||
'setVerificationResult',
|
||||
'setVCMetadata',
|
||||
],
|
||||
target: 'storing',
|
||||
target: 'requestingBindingOTP',
|
||||
},
|
||||
],
|
||||
onError: [
|
||||
|
||||
@@ -31,6 +31,7 @@ import {isMockVC} from '../../shared/Utils';
|
||||
import {VCFormat} from '../../shared/VCFormat';
|
||||
import {request} from '../../shared/request';
|
||||
import {WalletBindingResponse} from '../VerifiableCredential/VCMetaMachine/vc';
|
||||
import {KeyTypes} from '../../shared/cryptoutil/KeyTypes';
|
||||
|
||||
export const IssuersService = () => {
|
||||
return {
|
||||
@@ -193,9 +194,8 @@ export const IssuersService = () => {
|
||||
return response;
|
||||
},
|
||||
|
||||
fetchKeyPair: async context => {
|
||||
const keyType = context.vcMetadata?.downloadKeyType;
|
||||
return await fetchKeyPair(keyType);
|
||||
fetchKeyPair: async () => {
|
||||
return await fetchKeyPair(KeyTypes.RS256);
|
||||
},
|
||||
|
||||
addWalletBindingId: async context => {
|
||||
|
||||
Reference in New Issue
Block a user