Merge pull request #1087 from SiIky/fix/lam-323/pollingRoutes-typo

fix: pollingRoutes typo
This commit is contained in:
Rafael Taranto 2022-02-07 09:53:23 +00:00 committed by GitHub
commit 9d9e657342

View file

@ -139,8 +139,8 @@ function poll (req, res, next) {
response.idCardDataVerificationThreshold = compatTriggers.idCardData
response.idCardPhotoVerificationActive = !!compatTriggers.idCardPhoto
response.idCardPhotoVerificationThreshold = compatTriggers.idCardPhoto
response.sanctionsVerificationActive = !!compatTriggers.sancations
response.sanctionsVerificationThreshold = compatTriggers.sancations
response.sanctionsVerificationActive = !!compatTriggers.sanctions
response.sanctionsVerificationThreshold = compatTriggers.sanctions
response.frontCameraVerificationActive = !!compatTriggers.facephoto
response.frontCameraVerificationThreshold = compatTriggers.facephoto
}