fix: mock compliance url return

This commit is contained in:
Rafael Taranto 2025-06-05 10:18:12 +01:00
parent 305cbea6c9
commit 63367a7f11

View file

@ -5,9 +5,9 @@ const { APPROVED } = require('../consts')
const CODE = 'mock-compliance' const CODE = 'mock-compliance'
const createLink = (settings, userId, level) => { const createLink = (settings, userId, level) => {
return Promise.resolve({ return Promise.resolve(
url: `this is a mock external link, ${userId}, ${level}`, `https://mock-external-compliance.link/?user=${userId}&level=${level}`,
}) )
} }
const getApplicantStatus = account => { const getApplicantStatus = account => {