mirror of
https://github.com/louislam/uptime-kuma.git
synced 2024-11-09 23:24:07 -08:00
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,
|
"password": notification.serwersmsPassword,
|
||||||
"phone": notification.serwersmsPhoneNumber,
|
"phone": notification.serwersmsPhoneNumber,
|
||||||
"text": msg.replace(/[^\x00-\x7F]/g, ""),
|
"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);
|
let resp = await axios.post("https://api2.serwersms.pl/messages/send_sms", data, config);
|
||||||
|
|
|
@ -54,7 +54,7 @@ const NotificationFormList = {
|
||||||
"matrix": Matrix,
|
"matrix": Matrix,
|
||||||
"DingDing": DingDing,
|
"DingDing": DingDing,
|
||||||
"Bark": Bark,
|
"Bark": Bark,
|
||||||
"serwersms": SerwerSMS
|
"serwersms": SerwerSMS,
|
||||||
}
|
}
|
||||||
|
|
||||||
export default NotificationFormList
|
export default NotificationFormList
|
||||||
|
|
Loading…
Reference in a new issue