-
Notifications
You must be signed in to change notification settings - Fork 0
Open
Labels
Description
NotificationService/controllers/notifications.js
Lines 38 to 43 in 9509f3d
| // TODO: implement the notifications | |
| if (notificationChannel === 'mail' || notificationChannel === 'broadcast') mailController.sendMessage(); | |
| if (notificationChannel === 'telegram' || notificationChannel === 'broadcast') telegramController.sendMessage(); | |
| if (notificationChannel === 'push' || notificationChannel === 'broadcast') pushController.sendMessage(); | |
| if (notificationChannel === 'sms' || notificationChannel === 'broadcast') smsController.sendMessage(); | |