mirror of
https://gitlab.com/bramw/baserow.git
synced 2025-02-06 22:00:09 +00:00
12 lines
236 B
JavaScript
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,
|
|
})
|
|
},
|
|
}
|
|
}
|