Add a test email feature to the admin panel - Closes #307

This commit is contained in:
Bubka
2024-02-26 15:06:26 +01:00
parent 04078b09aa
commit 88d37394d3
10 changed files with 191 additions and 5 deletions

View File

@ -17,6 +17,14 @@ export default {
*/
getLastRelease(config = {}) {
return webClient.get('latestRelease', { ...config })
},
/**
*
* @returns Promise
*/
sendTestEmail(config = {}) {
return webClient.post('testEmail', { ...config })
}
}