mirror of
https://github.com/louislam/uptime-kuma.git
synced 2025-03-14 21:34:45 +00:00
* Add Grafana Oncall notification provider * Fix linter errors * Remove useless variables * Remove test message Co-authored-by: Frank Elsinga <frank@elsinga.de> * spelling consistency * Update server/notification-providers/grafana-oncall.js Co-authored-by: Frank Elsinga <frank@elsinga.de> * Update server/notification-providers/grafana-oncall.js Co-authored-by: Frank Elsinga <frank@elsinga.de> * eslint requirements Co-authored-by: Matthew Nickson <mnickson@sidingsmedia.com> * Add Grafana Oncall translation * Update src/components/notifications/GrafanaOncall.vue Co-authored-by: Frank Elsinga <frank@elsinga.de> * Check empty url --------- Co-authored-by: Emmanuel Cohen <emmanuel.cohen@bso.co> Co-authored-by: Frank Elsinga <frank@elsinga.de> Co-authored-by: Matthew Nickson <mnickson@sidingsmedia.com> Co-authored-by: Louis Lam <louislam@users.noreply.github.com>
7 lines
325 B
Vue
7 lines
325 B
Vue
<template>
|
|
<div class="mb-3">
|
|
<label for="GrafanaOncallURL" class="form-label">{{ $t("GrafanaOncallURL") }}<span style="color: red;"><sup>*</sup></span></label>
|
|
<input id="GrafanaOncallURL" v-model="$parent.notification.GrafanaOncallURL" type="text" class="form-control" required>
|
|
</div>
|
|
</template>
|
|
|