Merge pull request #1878 from RafaelTaranto/fix/mock-external-compliance
LAM-1427 fix: mock compliance url return
This commit is contained in:
commit
c96f60b8f1
1 changed files with 3 additions and 3 deletions
|
|
@ -5,9 +5,9 @@ const { APPROVED } = require('../consts')
|
|||
const CODE = 'mock-compliance'
|
||||
|
||||
const createLink = (settings, userId, level) => {
|
||||
return Promise.resolve({
|
||||
url: `this is a mock external link, ${userId}, ${level}`,
|
||||
})
|
||||
return Promise.resolve(
|
||||
`https://mock-external-compliance.link/?user=${userId}&level=${level}`,
|
||||
)
|
||||
}
|
||||
|
||||
const getApplicantStatus = account => {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue