Skip to content

Commit

Permalink
set idv provider endpoint: Allow onfido
Browse files Browse the repository at this point in the history
  • Loading branch information
calebtuttle committed Apr 24, 2024
1 parent bf60cf6 commit 8ae777c
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/services/admin/set-session-idv-provider.js
Original file line number Diff line number Diff line change
Expand Up @@ -42,9 +42,7 @@ async function setSessionIdvProvider(req, res) {
return res.status(400).json({ error: "No IDV provider specified." });
}

// We disabled Onfido on March 30, 2024. We plan to re-integrate it in the future.
// const supportedIdvProviders = ["onfido", "veriff"];
const supportedIdvProviders = ["veriff"];
const supportedIdvProviders = ["onfido", "veriff"];
if (supportedIdvProviders.indexOf(newIdvProvider) === -1) {
return res.status(400).json({
error: `Invalid IDV provider. Must be one of ${supportedIdvProviders}`,
Expand Down

0 comments on commit 8ae777c

Please sign in to comment.