feat: perform batch creation based on reset settings

This commit is contained in:
José Oliveira 2021-05-10 22:56:49 +01:00 committed by Josh Harvey
parent d1d4910555
commit b5c37442c3
2 changed files with 21 additions and 4 deletions

View file

@ -10,6 +10,7 @@ const namespaces = {
COIN_ATM_RADAR: 'coinAtmRadar',
TERMS_CONDITIONS: 'termsConditions',
CASH_OUT: 'cashOut',
CASH_IN: 'cashInt',
COMPLIANCE: 'compliance'
}
@ -110,8 +111,11 @@ const getCryptosFromWalletNamespace = config => {
return _.uniq(_.map(splitGetFirst, _.keys(fromNamespace('wallets', config))))
}
const getCashInSettings = config => fromNamespace(namespaces.CASH_IN)(config)
module.exports = {
getWalletSettings,
getCashInSettings,
getOperatorInfo,
getNotifications,
getGlobalNotifications,