v12.0.0 - initial commit
This commit is contained in:
commit
e2c49ea43c
1145 changed files with 97211 additions and 0 deletions
19
packages/server/lib/plugins/sms/mock-sms/mock-sms.js
Normal file
19
packages/server/lib/plugins/sms/mock-sms/mock-sms.js
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
const _ = require('lodash/fp')
|
||||
|
||||
const NAME = 'MockSMS'
|
||||
|
||||
function sendMessage(account, rec) {
|
||||
console.log('Sending SMS: %j', rec)
|
||||
return new Promise((resolve, reject) => {
|
||||
if (_.endsWith('666', _.getOr(false, 'sms.toNumber', rec))) {
|
||||
reject(new Error(`${exports.NAME} mocked error!`))
|
||||
} else {
|
||||
setTimeout(resolve, 10)
|
||||
}
|
||||
})
|
||||
}
|
||||
|
||||
module.exports = {
|
||||
NAME,
|
||||
sendMessage,
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue