2FAuth/resources/js/services/systemService.js

46 lines
894 B
JavaScript
Raw Normal View History

2023-09-27 10:24:03 +02:00
import { httpClientFactory } from '@/services/httpClientFactory'
2023-09-27 10:24:03 +02:00
const webClient = httpClientFactory('web')
export default {
/**
*
* @returns Promise
*/
getSystemInfos(config = {}) {
return webClient.get('system/infos', { ...config })
},
/**
*
* @returns Promise
*/
getLastRelease(config = {}) {
return webClient.get('system/latestRelease', { ...config })
},
/**
*
* @returns Promise
*/
sendTestEmail(config = {}) {
return webClient.post('system/test-email', { ...config })
},
/**
*
* @returns Promise
*/
clearCache(config = {}) {
return webClient.get('system/clear-cache', { ...config })
},
/**
*
* @returns Promise
*/
optimize(config = {}) {
return webClient.get('system/optimize', { ...config })
},
}