mirror of
https://github.com/louislam/uptime-kuma.git
synced 2024-11-27 20:10:53 +03:00
Merge pull request #52 from philippdormann/feature/gotify-upstream-merge
customize Gotify priority
This commit is contained in:
commit
91b736f391
2 changed files with 9 additions and 2 deletions
|
@ -26,7 +26,7 @@ class Notification {
|
|||
}
|
||||
await axios.post(`${notification.gotifyserverurl}/message?token=${notification.gotifyapplicationToken}`, {
|
||||
"message": msg,
|
||||
"priority": 8,
|
||||
"priority": notification.gotifyPriority || 8,
|
||||
"title": "Uptime-Kuma"
|
||||
})
|
||||
return true;
|
||||
|
|
|
@ -182,6 +182,11 @@
|
|||
<input type="text" class="form-control" id="gotify-server-url" required v-model="notification.gotifyserverurl">
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="mb-3">
|
||||
<label for="gotify-priority" class="form-label">Priority</label>
|
||||
<input type="number" class="form-control" id="gotify-priority" v-model="notification.gotifyPriority" required min="0" max="10" step="1">
|
||||
</div>
|
||||
</template>
|
||||
|
||||
</div>
|
||||
|
@ -220,6 +225,7 @@ export default {
|
|||
notification: {
|
||||
name: "",
|
||||
type: null,
|
||||
gotifyPriority: 8
|
||||
},
|
||||
}
|
||||
},
|
||||
|
@ -256,9 +262,10 @@ export default {
|
|||
name: "",
|
||||
type: null,
|
||||
}
|
||||
|
||||
|
||||
// Default set to Telegram
|
||||
this.notification.type = "telegram"
|
||||
this.notification.gotifyPriority = 8
|
||||
}
|
||||
|
||||
this.modal.show()
|
||||
|
|
Loading…
Reference in a new issue