mirror of
https://github.com/Ylianst/MeshCentral.git
synced 2025-03-09 15:40:18 +00:00
Added Telnyx SMS provider support. #3306
This commit is contained in:
parent
51744bb277
commit
52cee41535
4 changed files with 40 additions and 0 deletions
|
@ -3418,6 +3418,7 @@ function mainStart() {
|
|||
// SMS support
|
||||
if ((config.sms != null) && (config.sms.provider == 'twilio')) { modules.push('twilio'); }
|
||||
if ((config.sms != null) && (config.sms.provider == 'plivo')) { modules.push('plivo'); }
|
||||
if ((config.sms != null) && (config.sms.provider == 'telnyx')) { modules.push('telnyx'); }
|
||||
|
||||
// Setup web based push notifications
|
||||
if ((typeof config.settings.webpush == 'object') && (typeof config.settings.webpush.email == 'string')) { modules.push('web-push'); }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue