2ce7438c79
* Cleanup agent store and actions * Move set/create/update/destroy to helpers * Update mutation specs * Add specs for API helper * Fix edit/delete action visibility * Add actions specs * Remove unused API helpers * Remove duplicates * Remove duplicates * Fix duplicate
14 lines
379 B
JavaScript
14 lines
379 B
JavaScript
/* global axios */
|
|
|
|
import endPoints from './endPoints';
|
|
|
|
export default {
|
|
getAccountReports(metric, from, to) {
|
|
const { url } = endPoints('reports').account(metric, from, to);
|
|
return axios.get(url);
|
|
},
|
|
getAccountSummary(accountId, from, to) {
|
|
const urlData = endPoints('reports').accountSummary(accountId, from, to);
|
|
return axios.get(urlData.url);
|
|
},
|
|
};
|