Skip to content

Commit

Permalink
chore: add generate challenge endpoints (mojaloop#790)
Browse files Browse the repository at this point in the history
* chore: add generate challenge endpoints

* chore: fix description
  • Loading branch information
kleyow committed Dec 20, 2020
1 parent 65059c0 commit 73c57e2
Showing 1 changed file with 13 additions and 5 deletions.
18 changes: 13 additions & 5 deletions seeds/endpointType.js
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ const endpointTypes = [
},
{
name: 'TP_CB_URL_TRANSACTION_REQUEST_PUT_ERROR',
description: 'Participant callback URL to which PUT /thirdpartyRequests/transactions/{ID}/error can be sent error information can be sent'
description: 'Participant callback URL to which PUT /thirdpartyRequests/transactions/{ID}/error error information can be sent'
},
{
name: 'TP_CB_URL_TRANSACTION_REQUEST_PATCH',
Expand Down Expand Up @@ -180,7 +180,7 @@ const endpointTypes = [
},
{
name: 'TP_CB_URL_CONSENT_REQUEST_PUT_ERROR',
description: 'Participant callback URL where PUT /consentRequests/{ID}/error can be sent error information can be sent'
description: 'Participant callback URL where PUT /consentRequests/{ID}/error error information can be sent'
},
{
name: 'TP_CB_URL_CREATE_CREDENTIAL_POST',
Expand All @@ -192,15 +192,23 @@ const endpointTypes = [
},
{
name: 'TP_CB_URL_CONSENT_GET',
description: 'Participant callback URL where GET /consent/{ID} can be sent'
description: 'Participant callback URL where GET /consents/{ID} can be sent'
},
{
name: 'TP_CB_URL_CONSENT_PUT',
description: 'Participant callback URL where PUT /consent/{ID} can be sent'
description: 'Participant callback URL where PUT /consents/{ID} can be sent'
},
{
name: 'TP_CB_URL_CONSENT_PUT_ERROR',
description: 'Participant callback URL where PUT consent/{ID}/error can be sent error information can be sent'
description: 'Participant callback URL where PUT /consents/{ID}/error error information can be sent'
},
{
name: 'TP_CB_URL_CONSENT_GENERATE_CHALLENGE_POST',
description: 'Participant callback URL where POST /consents/{ID}/generateChallenge can be sent'
},
{
name: 'TP_CB_URL_CONSENT_GENERATE_CHALLENGE_PUT_ERROR',
description: 'Participant callback URL where PUT /consents/{ID}/generateChallenge/error error information can be sent'
}
]

Expand Down

0 comments on commit 73c57e2

Please sign in to comment.