Change smsVerificationEnabled to smsVerificationActive

This commit is contained in:
goga-m 2017-08-15 14:43:01 +03:00
parent a0e63f8405
commit 2c051f4344
3 changed files with 3 additions and 3 deletions

View file

@ -3,4 +3,4 @@ const anonymousCustomer = {
name: 'anonymous', name: 'anonymous',
} }
module.exports = {anonymous_customer} module.exports = {anonymousCustomer}

View file

@ -58,7 +58,7 @@ function poll (req, res, next) {
locale, locale,
txLimit: config.cashInTransactionLimit, txLimit: config.cashInTransactionLimit,
idVerificationEnabled: config.idVerificationEnabled, idVerificationEnabled: config.idVerificationEnabled,
smsVerificationEnabled: config.smsVerificationEnabled, smsVerificationActive: config.smsVerificationActive,
cassettes, cassettes,
twoWayMode: config.cashOutEnabled, twoWayMode: config.cashOutEnabled,
zeroConfLimit: config.zeroConfLimit, zeroConfLimit: config.zeroConfLimit,

View file

@ -99,7 +99,7 @@
"crypto": "global", "crypto": "global",
"machine": "global" "machine": "global"
}, },
"code": "smsVerificationEnabled", "code": "smsVerificationActive",
"fieldType": "onOff", "fieldType": "onOff",
"fieldClass": null "fieldClass": null
}, },