mirror of
https://gitlab.com/bramw/baserow.git
synced 2024-11-21 23:37:55 +00:00
13 lines
236 B
JavaScript
13 lines
236 B
JavaScript
export default (client) => {
|
|
return {
|
|
getAll() {
|
|
return client.get('/_health/full/')
|
|
},
|
|
testEmail(targetEmail) {
|
|
return client.post('/_health/email/', {
|
|
target_email: targetEmail,
|
|
})
|
|
},
|
|
}
|
|
}
|