diff --git a/CHANGELOG.md b/CHANGELOG.md index 8b7340aa..d98e2b9e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,8 +1,12 @@ +# 0.90.60 (07-15-2020) +- Added LETSENCRYPT_ENABLE (boolean) env to enable/disable letsencrypt SSL + # 0.90.59 (07-14-2020) - Added LetsEncrypt SSL Generator by using LETSENCRYPT_HOST and LETSENCRYPT_EMAIL envs. - Modified JWT token key to be sha256 of API Secret - Modified github actions to build multi-arch Docker images - Added "update" command to install latest version +- Fixed dashboard uptime_data API request to request correct start/time timestamp # 0.90.58 (07-09-2020) - Fixed ICMP latency/ping durations diff --git a/frontend/src/API.js b/frontend/src/API.js index dbadbf04..22b231b9 100644 --- a/frontend/src/API.js +++ b/frontend/src/API.js @@ -155,6 +155,10 @@ class Api { return axios.delete('api/incidents/'+incident.id).then(response => (response.data)) } + async checkin(api) { + return axios.get('api/checkins/'+api).then(response => (response.data)) + } + async checkin_create(data) { return axios.post('api/checkins', data).then(response => (response.data)) } diff --git a/frontend/src/components/Dashboard/Checkins.vue b/frontend/src/components/Dashboard/Checkins.vue index bb5c73b4..41ac97b0 100644 --- a/frontend/src/components/Dashboard/Checkins.vue +++ b/frontend/src/components/Dashboard/Checkins.vue @@ -2,40 +2,81 @@

{{service.name}} Checkins

Tell your service to send a routine HTTP request to a Statping Checkin.

-