1
0
Fork 0
mirror of https://gitlab.com/bramw/baserow.git synced 2025-02-06 22:00:09 +00:00
bramw_baserow/web-frontend/modules/core/services/health.js

12 lines
236 B
JavaScript

export default (client) => {
return {
getAll() {
return client.get('/_health/full/')
},
testEmail(targetEmail) {
return client.post('/_health/email/', {
target_email: targetEmail,
})
},
}
}