mirror of
https://github.com/louislam/uptime-kuma.git
synced 2024-11-23 23:04:04 +00:00
Compare commits
5 commits
ca38de640c
...
5ca4f172c0
Author | SHA1 | Date | |
---|---|---|---|
|
5ca4f172c0 | ||
|
3e0d48690f | ||
|
710e8fdf46 | ||
|
665d930edc | ||
|
1ece0faa76 |
3 changed files with 11 additions and 1 deletions
|
@ -17,6 +17,8 @@ class SerwerSMS extends NotificationProvider {
|
|||
"Content-Type": "application/json",
|
||||
}
|
||||
};
|
||||
|
||||
// Use phone as first option
|
||||
let data = {
|
||||
"username": notification.serwersmsUsername,
|
||||
"password": notification.serwersmsPassword,
|
||||
|
@ -27,6 +29,13 @@ class SerwerSMS extends NotificationProvider {
|
|||
|
||||
let resp = await axios.post(url, data, config);
|
||||
|
||||
if (!resp.data.success) {
|
||||
// If unsuccessful, try using group_id
|
||||
data.phone = null; // Clear phone number
|
||||
data.group_id = notification.serwersmsPhoneNumber;
|
||||
resp = await axios.post(url, data, config);
|
||||
}
|
||||
|
||||
if (!resp.data.success) {
|
||||
if (resp.data.error) {
|
||||
let error = `SerwerSMS.pl API returned error code ${resp.data.error.code} (${resp.data.error.type}) with error message: ${resp.data.error.message}`;
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
<HiddenInput id="serwersms-key" v-model="$parent.notification.serwersmsPassword" :required="true" autocomplete="new-password"></HiddenInput>
|
||||
</div>
|
||||
<div class="mb-3">
|
||||
<label for="serwersms-phone-number" class="form-label">{{ $t("serwersmsPhoneNumber") }}</label>
|
||||
<label for="serwersms-phone-number" class="form-label">{{ $t("serwersmsPhoneNumberGroupId") }}</label>
|
||||
<input id="serwersms-phone-number" v-model="$parent.notification.serwersmsPhoneNumber" type="text" class="form-control" required>
|
||||
</div>
|
||||
<div class="mb-3">
|
||||
|
|
|
@ -360,6 +360,7 @@
|
|||
"serwersmsAPIUser": "Nazwa użytkownika API (z prefiksem webapi_)",
|
||||
"serwersmsAPIPassword": "Hasło API",
|
||||
"serwersmsPhoneNumber": "Numer telefonu",
|
||||
"serwersmsPhoneNumberGroupId": "Numer telefonu lub ID Grupy",
|
||||
"serwersmsSenderName": "Nazwa nadawcy (zatwierdzona w panelu klienta)",
|
||||
"smseagle": "SMSEagle",
|
||||
"smseagleTo": "Numer/y telefonu",
|
||||
|
|
Loading…
Reference in a new issue