style(serwersms): add missing trailing commas
Co-authored-by: Adam Stachowicz <saibamenppl@gmail.com>
This commit is contained in:
parent
c1267e9b3b
commit
186c11540f
|
@ -19,7 +19,7 @@ class SerwerSMS extends NotificationProvider {
|
|||
"password": notification.serwersmsPassword,
|
||||
"phone": notification.serwersmsPhoneNumber,
|
||||
"text": msg.replace(/[^\x00-\x7F]/g, ""),
|
||||
"sender": notification.serwersmsSenderName
|
||||
"sender": notification.serwersmsSenderName,
|
||||
};
|
||||
|
||||
let resp = await axios.post("https://api2.serwersms.pl/messages/send_sms", data, config);
|
||||
|
|
|
@ -54,7 +54,7 @@ const NotificationFormList = {
|
|||
"matrix": Matrix,
|
||||
"DingDing": DingDing,
|
||||
"Bark": Bark,
|
||||
"serwersms": SerwerSMS
|
||||
"serwersms": SerwerSMS,
|
||||
}
|
||||
|
||||
export default NotificationFormList
|
||||
|
|
Loading…
Reference in New Issue